Skip to content

Commit

Permalink
Base release workflow on tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
reasonablytall committed May 3, 2021
1 parent 0134a21 commit bd730ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Daily Experimental Release"
on:
schedule:
- cron: '0 0 * * *'
workflow-dispatch:
workflow_dispatch:
jobs:
push-tag:
name: Push Release Tag
Expand Down
21 changes: 7 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: "Experimental Release"
on:
push:
branches:
- master
tags:
- experimental-*
jobs:
release:
name: Create Release
Expand All @@ -11,21 +11,14 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- uses: actions/checkout@v2
- name: Push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: ${{ github.run_number }}
tag_prefix: experimental-
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: "Experimental Build #${{ github.run_number }}"
tag_name: ${{ github.ref }}
release_name: "Experimental Build #${{ github.ref }}"
body: |
These are the outputs for the experimental build of commit [${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})
draft: false
Expand Down Expand Up @@ -67,14 +60,14 @@ jobs:
EOL
make -j$((`nproc`+0)) CROSS="${PLATFORM}" TILES=1 SOUND=1 RELEASE=1 LOCALIZE=1 BACKTRACE=0 PCH=0 bindist
mv cataclysmdda-0.E.zip cdda-${{ matrix.artifact }}-b${{ github.run_number }}.zip
mv cataclysmdda-0.E.zip cdda-${{ matrix.artifact }}-${{ github.ref }}.zip
- name: Upload release asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: cdda-${{ matrix.artifact }}-b${{ github.run_number }}.zip
asset_name: cdda-${{ matrix.artifact }}-b${{ github.run_number }}.zip
asset_path: cdda-${{ matrix.artifact }}-${{ github.ref }}.zip
asset_name: cdda-${{ matrix.artifact }}-${{ github.ref }}.zip
asset_content_type: application/zip

0 comments on commit bd730ac

Please sign in to comment.