Skip to content

Commit 6f305b4

Browse files
authored
fix: Workflow isn't releasing containers (#493)
* fix: Workflow isn't releasing containers * That's the actual issue
1 parent b6f5f95 commit 6f305b4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
needs: [deploy]
6161
if: ${{ github.event_name != 'pull_request' && github.repository == '5e-bits/5e-database' }}
6262
outputs:
63-
new_release_published: ${{ steps.semantic.outputs.steps.semantic.outputs.new_release_published}}
63+
new_release_published: ${{ steps.semantic.outputs.new_release_published }}
6464
version: ${{ steps.semantic.outputs.new_release_version }}
6565
steps:
6666
- name: Checkout latest code
@@ -77,7 +77,7 @@ jobs:
7777
name: Container Release
7878
runs-on: ubuntu-latest
7979
needs: [github-release]
80-
if: ${{needs.github-release.outputs.new_release_published == 'true' && github.repository == '5e-bits/5e-database' }}
80+
if: ${{ needs.github-release.outputs.new_release_published == 'true' && github.repository == '5e-bits/5e-database' }}
8181
env:
8282
REGISTRY: ghcr.io
8383
IMAGE_NAME: ${{ github.repository }}

0 commit comments

Comments
 (0)