Add instance name verification #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: Release | |
on: | |
push: | |
tags: ["*"] | |
jobs: | |
bump: | |
name: Bump Version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Update Changelog | |
uses: thomaseizinger/keep-a-changelog-new-release@v3 | |
with: | |
tag: ${{ github.ref_name }} | |
- name: Bump Cargo version | |
id: version-bump | |
uses: DervexDev/file-version-bumper@v1 | |
with: | |
path: ./Cargo.toml | |
- name: Update Cargo lock | |
run: cargo update --workspace | |
- name: Commit and Push | |
uses: EndBug/add-and-commit@v9 | |
if: ${{ github.ref_name != steps.version-bump.outputs.old_version }} | |
with: | |
message: Bump version to ${{ github.ref_name }} | |
default_author: github_actions | |
- name: Update tag | |
if: ${{ github.ref_name != steps.version-bump.outputs.old_version }} | |
run: | | |
git tag -fa ${{ github.ref_name }} -m "Release ${{ github.ref_name }}" | |
git push -f --tags | |
draft-release: | |
name: Draft Release | |
runs-on: ubuntu-latest | |
needs: bump | |
outputs: | |
upload_url: ${{ steps.create-release.outputs.upload_url }} | |
release_id: ${{ steps.create-release.outputs.id }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Read Changelog | |
id: read-changes | |
uses: mindsers/changelog-reader-action@v2 | |
with: | |
version: ${{ github.ref_name }} | |
- name: Create Release | |
id: create-release | |
uses: shogo82148/actions-create-release@v1 | |
with: | |
release_name: ${{ github.ref_name }} | |
body: ${{ steps.read-changes.outputs.changes }} | |
prerelease: ${{ contains(github.ref_name, 'pre') }} | |
draft: true | |
build: | |
name: Build (${{ matrix.label }}) | |
runs-on: ${{ matrix.os }} | |
needs: draft-release | |
strategy: | |
matrix: | |
include: | |
# x86_64 | |
- host: linux | |
os: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
label: linux-x86_64 | |
- host: macos | |
os: macos-latest | |
target: x86_64-apple-darwin | |
label: macos-x86_64 | |
- host: windows | |
os: windows-latest | |
target: x86_64-pc-windows-msvc | |
label: windows-x86_64 | |
# aarch64 | |
- host: macos | |
os: macos-latest | |
target: aarch64-apple-darwin | |
label: macos-aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Setup Rust | |
uses: hecrj/setup-rust-action@v2 | |
with: | |
targets: ${{ matrix.target }} | |
- name: Build | |
run: cargo build --all-features --release --verbose --target ${{ matrix.target }} | |
env: | |
ARGON_TOKEN: ${{ secrets.ARGON_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive | |
shell: bash | |
run: | | |
mkdir release | |
if [ "${{ matrix.host }}" = "windows" ]; then | |
cp "target/${{ matrix.target }}/release/argon.exe" release/ | |
cd release | |
7z a ../release.zip * | |
else | |
cp "target/${{ matrix.target }}/release/argon" release/ | |
cd release | |
zip ../release.zip * | |
fi | |
- name: Upload to Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: argon-${{ github.ref_name }}-${{ matrix.label }}.zip | |
path: release.zip | |
- name: Upload to Release | |
uses: shogo82148/actions-upload-release-asset@v1 | |
with: | |
upload_url: ${{ needs.draft-release.outputs.upload_url }} | |
asset_name: argon-${{ github.ref_name }}-${{ matrix.label }}.zip | |
asset_path: release.zip | |
publish-release: | |
name: Publish Release | |
runs-on: ubuntu-latest | |
needs: [build, draft-release] | |
steps: | |
- uses: eregon/publish-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
release_id: ${{ needs.draft-release.outputs.release_id }} |