Skip to content

Commit

Permalink
Publish packages via GitHub Actions #14
Browse files Browse the repository at this point in the history
  • Loading branch information
sallyluenoa committed Jul 11, 2021
1 parent 7fe4872 commit 695f972
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sandbox_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
steps:
- name: Check out
uses: actions/checkout@v2
run: git fetch -t

- name: Set up JDK 11
uses: actions/setup-java@v2
Expand All @@ -22,11 +23,11 @@ jobs:
id: get_version
run: |
echo ::set-output name=VERSION1::${GITHUB_REF/refs\/heads\//}
echo ::set-output name=VERSION2::$(git describe --tags)
echo ::set-output name=VERSION2::$(git describe --tags --abbrev=0)
- name: Test
run: |
git describe --tags
git describe --tags --abbrev=0
echo $GITHUB_RUN_ID
echo $GITHUB_RUN_NUMBER
echo ${{ steps.get_version.outputs.VERSION1 }}
Expand Down

0 comments on commit 695f972

Please sign in to comment.