mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
Actions: Re-enable uploading with latest upload-release-action
This commit is contained in:
parent
532cc3f26a
commit
af147df990
1 changed files with 18 additions and 27 deletions
45
.github/workflows/release.yml
vendored
45
.github/workflows/release.yml
vendored
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue