Actions: Re-enable uploading with latest upload-release-action

This commit is contained in:
Jack Grigg 2020-11-22 13:55:47 +00:00
parent 532cc3f26a
commit af147df990

View file

@ -104,22 +104,15 @@ jobs:
shell: bash
if: matrix.name == 'windows'
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
shell: bash
- name: Echo the version
run: echo ${{ steps.get_version.outputs.VERSION }}
if: github.event.inputs.test == 'true'
# - name: Upload archive to release
# uses: svenstaro/upload-release-action@v1-release
# with:
# repo_token: ${{ secrets.GITHUB_TOKEN }}
# file: ${{ matrix.archive_name }}
# asset_name: rage-${{ steps.get_version.outputs.VERSION }}-${{ matrix.asset_suffix }}
# tag: ${{ github.ref }}
- name: Upload archive to release
uses: svenstaro/upload-release-action@2.2.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ matrix.archive_name }}
asset_name: rage-$tag-${{ matrix.asset_suffix }}
tag: ${{ github.ref }}
prerelease: true
if: github.event.inputs.test != 'true'
deb:
name: Debian ${{ matrix.name }}
@ -201,14 +194,12 @@ jobs:
command: deb
args: --package rage --no-build --target ${{ matrix.target }}
- name: Inspect the result
run: ls target/${{ matrix.target }}/debian/*.deb
if: github.event.inputs.test == 'true'
# - name: Upload Debian package to release
# uses: svenstaro/upload-release-action@v1-release
# with:
# repo_token: ${{ secrets.GITHUB_TOKEN }}
# file: target/${{ matrix.target }}/debian/*.deb
# tag: ${{ github.ref }}
# file_glob: true
- name: Upload Debian package to release
uses: svenstaro/upload-release-action@2.2.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/debian/*.deb
tag: ${{ github.ref }}
file_glob: true
prerelease: true
if: github.event.inputs.test != 'true'