Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Sep 6, 2024
1 parent aff88b2 commit ccd9c1c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@ jobs:
needs: [build]
secrets: inherit

create-release:
runs-on: ubuntu-latest
needs: [meta, publish]
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ needs.meta.outputs.COALESCE_VERSION }}

build-template:
uses: ./.github/workflows/part-template-build.yml
secrets: inherit
Expand All @@ -43,18 +52,9 @@ jobs:
# to make new packages available, we consume the local artifacts instead of waiting).
COALESCE_VERSION: ${{ needs.meta.outputs.COALESCE_VERSION }}

create-release:
runs-on: ubuntu-latest
needs: [meta, publish]
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
with:
tag: ${{ needs.meta.outputs.COALESCE_VERSION }}

publish-template:
runs-on: ubuntu-latest
needs: [meta, publish]
needs: [build-template]

steps:
- name: Download Artifacts
Expand Down

0 comments on commit ccd9c1c

Please sign in to comment.