v0.6.6 #68
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
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
name: Networking Release All | |
jobs: | |
delete_latest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete the "latest" Release | |
uses: dev-drprasad/[email protected] | |
with: | |
tag_name: latest | |
delete_release: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
blockless_networking_release: | |
needs: delete_latest | |
strategy: | |
matrix: | |
goos: [darwin, linux, windows] | |
goarch: [amd64, arm64] | |
runs-on: ubuntu-latest | |
steps: | |
- name: set goos | |
run: echo "GOOS=${{ matrix.goos }}" | |
- name: set goarch | |
run: echo "GOARCH=${{ matrix.goarch }}" | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21.0" | |
check-latest: true | |
- run: env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make | |
- name: Archive Release | |
uses: thedoctor0/[email protected] | |
with: | |
type: "tar" | |
directory: dist/ | |
filename: ../b7s-${{ matrix.goos }}.${{ matrix.goarch }}.tar.gz | |
path: b7s* | |
- name: Get release | |
id: get_release | |
uses: bruceadams/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: upload artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
upload_url: ${{ steps.get_release.outputs.upload_url }} | |
asset_path: b7s-${{ matrix.goos }}.${{ matrix.goarch }}.tar.gz | |
asset_name: b7s-${{ matrix.goos }}.${{ matrix.goarch }}.tar.gz | |
asset_content_type: application/gzip | |
- name: Publish the Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: latest | |
files: b7s-${{ matrix.goos }}.${{ matrix.goarch }}.tar.gz | |
prerelease: true | |
fail_on_unmatched_files: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |