diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-02 11:15:52 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-02 11:15:52 +0200 |
commit | 60d844ba692893dd3c72edfe0a9c612ae6c993cf (patch) | |
tree | f68cd78aca51dc6483139b3376eafbdedb37049e /.github/workflows/cd.yml | |
parent | 2e894d1eab0385ea30017624dd761eb5b65fb28b (diff) |
cd: add `release.sh` and fix text
Diffstat (limited to '.github/workflows/cd.yml')
-rw-r--r-- | .github/workflows/cd.yml | 8 |
1 files changed, 4 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 |