🔖 Updated to version v0.4.7 #13
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: Create Release | |
# Trigger the workflow manually via the GitHub Actions UI | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-macos: | |
uses: ./.github/workflows/build-macos.yml | |
package-all: | |
uses: ./.github/workflows/package.yml | |
create_release: | |
needs: [package-all, build-macos] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Download Packages from package-all step | |
uses: actions/download-artifact@v4 | |
with: | |
name: integrity_packages | |
path: pkgs/ | |
- name: Download Packages from build-macos step | |
uses: actions/download-artifact@v4 | |
with: | |
name: integrity_macos_binaries | |
path: pkgs/ | |
- name: Rename macos binary | |
run: | | |
mv pkgs/integrity pkgs/integrity_macos | |
- name: Display structure of downloaded packages | |
run: ls -R pkgs/ | |
- name: Create new release and upload packages | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: pkgs/* | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true | |
draft: true |