Skip to content

GE-Proton9-1 Released #48

GE-Proton9-1 Released

GE-Proton9-1 Released #48

Workflow file for this run

name: Release
on:
release:
types: [ published ]
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
with:
name: ${{ github.ref_name }}
release:
name: Release ${{ github.ref_name }}
needs: build
runs-on: ubuntu-latest
steps:
- name: Download ${{ github.ref_name }}.tar.gz artifact
uses: actions/download-artifact@v3
with:
name: ${{ github.ref_name }}.tar.gz
- name: Download ${{ github.ref_name }}.sha512sum artifact
uses: actions/download-artifact@v3
with:
name: ${{ github.ref_name }}.sha512sum
- name: Upload ${{ github.ref_name }}.tar.gz to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
file: ${{ github.ref_name }}.tar.gz
overwrite: false
- name: Upload ${{ github.ref_name }}.sha512sum to release
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
file: ${{ github.ref_name }}.sha512sum
overwrite: false