Skip to content

Commit

Permalink
Fix CI publish after migration to actions/download-artifact@v2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
regadas committed Dec 10, 2020
1 parent 3f2fc42 commit 925d8a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
if: runner.os == 'macOS'
- run: sbt test graalvm-native-image:packageBin
- run: |
cd modules/cli/target/graalvm-native-image/
cd modules/cli/target/graalvm-native-image/
tar czf tfr-${{ runner.os }}.tar.gz tfr
- uses: actions/upload-artifact@master
with:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
name: release_url
- id: get_release_info
run: |
value=`cat release_url/release_url.txt`
value=`cat release_url.txt`
echo ::set-output name=upload_url::$value
- uses: actions/download-artifact@v2.0.6
with:
Expand All @@ -112,6 +112,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release_info.outputs.upload_url }}
asset_path: tfr-${{ runner.os }}/tfr-${{ runner.os }}.tar.gz
asset_path: tfr-${{ runner.os }}.tar.gz
asset_name: tfr-${{ steps.get_version.outputs.version }}-${{ runner.os }}.tar.gz
asset_content_type: application/gzip

0 comments on commit 925d8a4

Please sign in to comment.