mirror of
https://github.com/compute-blade-community/compute-blade-agent.git
synced 2026-04-21 17:45:43 +02:00
fix: ${ -> ${{ ... (#27)
Signed-off-by: Matthias Riegler <matthias.riegler@ankorstore.com>
This commit is contained in:
9
.github/workflows/release.yaml
vendored
9
.github/workflows/release.yaml
vendored
@@ -17,7 +17,7 @@ jobs:
|
||||
release-type: simple # actual releasing is handled by goreleaser
|
||||
package-name: computeblade-agent
|
||||
outputs:
|
||||
release_created: ${steps.release-please.outputs.release_created }
|
||||
release_created: ${{ steps.release-please.outputs.release_created }}
|
||||
|
||||
# Goreleaser for binary releases / GH release
|
||||
goreleaser:
|
||||
@@ -25,14 +25,7 @@ jobs:
|
||||
needs:
|
||||
- release-please
|
||||
if: needs.release-please.outputs.release_created
|
||||
env:
|
||||
RELEASE_CREATED: ${{ needs.release-please.outputs.release_created }}
|
||||
steps:
|
||||
- name: debug
|
||||
run:
|
||||
echo $RELEASE_CREATED
|
||||
exit 1
|
||||
|
||||
# Checkout code (full history)
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
Reference in New Issue
Block a user