Skip to content

Commit

Permalink
second try for release outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
cfkoehler committed Oct 24, 2024
1 parent 0568ff7 commit 8fe0b01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
packages: write
steps:
- name: Add RELEASE_VERSION to environment variable
run: echo "RELEASE_VERSION=${{ steps.get_version.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"
run: echo "RELEASE_VERSION=${{ needs.get_version.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"

- name: Checkout repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add RELEASE_VERSION to environment variable
run: echo "RELEASE_VERSION=${{ steps.get_version.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"
run: echo "RELEASE_VERSION=${{ steps.needs.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"

- name: Publish to slack channel via bot token
id: slack
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Add RELEASE_VERSION to environment variable
run: echo "RELEASE_VERSION=${{ steps.get_version.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"
run: echo "RELEASE_VERSION=${{ steps.needs.outputs.RELEASE_VERSION }}" >> "$GITHUB_ENV"

- name: Publish to slack channel via bot token
id: slack
Expand Down

0 comments on commit 8fe0b01

Please sign in to comment.