We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1cd29 commit 4d9c0d3Copy full SHA for 4d9c0d3
1 file changed
.github/workflows/release.yml
@@ -128,12 +128,12 @@ jobs:
128
- uses: softprops/action-gh-release@1e07f4398721186383de40550babbdf2b84acfc5
129
with:
130
name: ${{ needs.meta.outputs.version }}
131
- files: pkg/hokay-*
+ files: hokay-*
132
generate_release_notes: true
133
134
container-registry:
135
needs: [meta, build]
136
- if: needs.meta.outputs.mode == 'release'
+ # if: needs.meta.outputs.mode == 'release'
137
permissions:
138
contents: read
139
packages: write
@@ -163,5 +163,5 @@ jobs:
163
steps:
164
- uses: actions/checkout@v4
165
- run: cargo publish --dry-run
166
- - if: startsWith(github.ref, 'refs/tags/release/')
+ - if: needs.meta.outputs.mode == 'release'
167
run: cargo publish --token=${{ secrets.CRATESIO_TOKEN }}
0 commit comments