summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-02 11:15:52 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-02 11:15:52 +0200
commit60d844ba692893dd3c72edfe0a9c612ae6c993cf (patch)
treef68cd78aca51dc6483139b3376eafbdedb37049e
parent2e894d1eab0385ea30017624dd761eb5b65fb28b (diff)
cd: add `release.sh` and fix text
-rw-r--r--.github/workflows/cd.yml8
-rwxr-xr-xrelease.sh7
2 files changed, 11 insertions, 4 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index f428fab..b140445 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -1,4 +1,4 @@
-name: Publish
+name: Publish on GHCR
on:
push:
@@ -6,14 +6,14 @@ on:
- v*
env:
IMAGE_NAME: backend
-#
+
jobs:
push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
- #
+
steps:
- uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- #
+
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
diff --git a/release.sh b/release.sh
new file mode 100755
index 0000000..04e2f2f
--- /dev/null
+++ b/release.sh
@@ -0,0 +1,7 @@
+if [ $# -eq 0 ]; then
+ echo "You must pass the version number."
+ exit 1
+fi
+
+sed -i "3s/.*/version = \"$1\"/" Cargo.toml
+git tag -a "v$1" -m "Version $1"