Draft Release #3
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
# good ref:https://github.com/ruby/ruby-dev-builder/blob/b0bf59a17c17985d4692243d4689c273f6348fa5/.github/workflows/build.yml#L40 | |
name: Draft Release | |
on: | |
push: | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
workflow_dispatch: | |
jobs: | |
publish: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Publish | |
run: dotnet publish Resumer/ --output ./publish | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: publish | |
path: ./publish/ | |
# - name: zip | |
# run: bash zip -r ../${{ matrix.os }}_resumer_${{ github.ref_name }}.zip ../publish | |
# working-directory: ./publish | |
- name: zip files | |
shell: pwsh | |
run: | | |
if ($env:RUNNER_OS -eq "Windows") { | |
7z a ../${{ matrix.os }}_resumer_${{ github.ref_name }}.zip ../publish | |
} | |
else { | |
zip -r ../${{ matrix.os }}_resumer_${{ github.ref_name }}.zip ../publish | |
} | |
- name: Create GitHub Release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
run: gh release create ${{ github.ref_name }} ${{ matrix.os }}_resumer_${{ github.ref_name }}.zip --draft |