Skip to content

Commit

Permalink
[dash0] fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
basti1302 committed Feb 2, 2024
1 parent 581a824 commit e1be46c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,29 @@ jobs:
# do not run multiple deployment jobs concurrently
concurrency: deploy
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: deploy release
uses: ./.github/actions/deploy-demo
with:
token: ${{ secrets.REPOSITORY_FULL_ACCESS_GITHUB_TOKEN }}
containerImageVersion: ${{ github.event.release.tag_name }}

update-release-in-env-file:
name: update .env file
needs:
- deploy_release
runs-on: ubuntu-latest
concurrency: update-env-file
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: update .env file
uses: ./.github/actions/update-env-file
with:
Expand Down

0 comments on commit e1be46c

Please sign in to comment.