chore(deps): update actions/checkout digest to eef6144 #35
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-test | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
permissions: | |
contents: read | |
jobs: | |
release-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove large directories | |
run: | | |
df -h | |
cd /opt/hostedtoolcache | |
find . -mindepth 1 -maxdepth 1 -type d -not -name 'go' -exec rm -rf {} + | |
df -h | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Set up Go | |
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
go-version: '1.22.6' | |
- name: Run GoReleaser Draft | |
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --snapshot --clean --skip=publish -p 1 | |
- name: Test binary | |
run: | | |
ls dist/ | |
mkdir amd64 && tar zxvf dist/kyanos_v0.0.0-next_linux_amd64.tar.gz -C amd64 | |
mkdir arm64 && tar zxvf dist/kyanos_v0.0.0-next_linux_arm64.tar.gz -C arm64 | |
file ./amd64/kyanos | |
file ./arm64/kyanos | |
file ./amd64/kyanos |grep x86-64 |grep 'statically linked' | |
file ./arm64/kyanos |grep aarch64 |grep 'statically linked' | |
- name: Store Releases | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 | |
with: | |
name: kyanos_v0.0.0-next_linux_amd64.tar.gz | |
path: dist/kyanos_v0.0.0-next_linux_amd64.tar.gz | |
- name: Store Releases | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4 | |
with: | |
name: kyanos_v0.0.0-next_linux_arm64.tar.gz | |
path: dist/kyanos_v0.0.0-next_linux_arm64.tar.gz |