Release #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_run: | |
workflows: [Flatpak] | |
types: [completed] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
#if: startsWith(github.ref, 'refs/tags/') | |
permissions: | |
contents: write | |
steps: | |
- name: Download artifacts | |
uses: dawidd6/action-download-artifact@v2.28.0 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
run_id: ${{ github.event.workflow_run.id }} | |
workflow: Flatpak | |
path: artifacts | |
- name: Rename flatpaks appropriately | |
shell: bash | |
run: | | |
mkdir upload | |
find artifacts -mindepth 1 -type d -exec sh -c 'cp "$0"/nxdumpclient.flatpak upload/$(basename "$0").flatpak' {} \; | |
echo "Files to upload:" | |
find upload | |
- name: Upload artifacts to GitHub release | |
# TODO: remove, uncomment the job-wide one | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: upload/* |