Compare commits

..

No commits in common. "depot" and "v0.0.1" have entirely different histories.

View File

@ -15,9 +15,6 @@ jobs:
matrix:
goos: [linux, windows, darwin]
goarch: [amd64, arm64]
exclude:
- goos: darwin
goarch: amd64
steps:
- uses: actions/checkout@v4
- name: Set up Go
@ -54,9 +51,14 @@ jobs:
echo "ASSET_PATH=${ARCHIVE_NAME}.tar.gz" >> $GITHUB_ENV
fi
- name: Upload release asset
uses: softprops/action-gh-release@v2
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: ${{ env.ASSET_PATH }}
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ env.ASSET_PATH }}
asset_name: ${{ env.ASSET_PATH }}
asset_content_type: application/octet-stream
docker:
runs-on: ubuntu-latest
steps: