Skip to content

Make the build consistent across archs for Go to correctly report the… #2

Make the build consistent across archs for Go to correctly report the…

Make the build consistent across archs for Go to correctly report the… #2

Workflow file for this run

on:
push:
tags:
- "v*"
env:
GH_TOKEN: ${{ github.token }}
GITHUB_ACTION_TAG: ${{ github.ref_name }}
name: Release
permissions:
contents: write
id-token: write
jobs:
release-cross-arch:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cross Arch Build
run: |
make ci
env:
CROSS: "true"
- name: release binaries
run: |
gh release upload ${{ github.ref_name }} dist/artifacts/*