Update release.yml #54
Workflow file for this run
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: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: master | |
- name: Build release | |
run: zig build release | |
- name: Archive executable | |
uses: actions/upload-artifact@v3 | |
with: | |
name: zvm | |
path: zig-out/bin/* | |
# This job will need to be modified to handle multiple artifacts | |
create-release: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Download all artifacts dynamically | |
- name: Download artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
path: artifacts/ | |
- name: List artifacts | |
run: ls -la artifacts/ | |
- name: Create and Upload Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifactErrorsFailBuild: true | |
generateReleaseNotes: true | |
tag: ${{ github.ref }} | |
name: ${{ github.ref_name }} | |
draft: false | |
prerelease: false | |
allowUpdates: true | |
token: ${{ secrets.GITHUB_TOKEN }} |