Skip to content

Commit

Permalink
setup java sdk 17
Browse files Browse the repository at this point in the history
  • Loading branch information
malmstein committed Nov 5, 2024
1 parent d16bd89 commit 7412430
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
with:
token: '${{ secrets.GT_DAXMOBILE }}'

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'

- name: Set up ruby env
uses: ruby/setup-ruby@v1
with:
Expand All @@ -33,17 +39,11 @@ jobs:
- name: Get latest tag
id: get_latest_tag
run: |
# Fetch all tags
git fetch --tags
# Get the latest tag
git fetch --tags
output=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "Latest tag: $output"
echo "latest_tag=$output" >> $GITHUB_OUTPUT
- name: Output latest tag
run: |
echo "The latest tag is: ${{ steps.get_latest_tag.outputs.latest_tag }}"
- name: Decode upload keys
uses: davidSchuppa/base64Secret-toFile-action@199e78f212c854d2284fada7f3cd3aba3e37d208
with:
Expand Down

0 comments on commit 7412430

Please sign in to comment.