Skip to content

Commit

Permalink
ci: fix arm64 path parsing (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
uubulb authored Nov 5, 2024
1 parent c20dfdc commit 2590815
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
goarch: s390x
- goos: linux
goarch: arm64

name: Build artifacts
runs-on: ubuntu-latest
container:
Expand All @@ -44,12 +44,12 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: "1.23.x"

- name: Build
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
version: "~> v2"
args: build --single-target --clean --skip=validate

- name: Upload artifacts
Expand All @@ -72,12 +72,11 @@ jobs:

- name: Archive and compress binaries
run: |
for file in assets/*/*/*; do
if [ -f "$file" ]; then
chmod +x "$file"
export fileWithoutExt=${file%.*}
zip -jr "$fileWithoutExt.zip" "$file"
fi
find assets/*/*/* -type f | while read -r file; do
dir=$(dirname "$file")
filename=$(basename "$file")
fileWithoutExt="${filename%.*}"
zip -jr "$dir/$fileWithoutExt.zip" "$file"
done
- name: Release
Expand Down Expand Up @@ -113,7 +112,7 @@ jobs:
name: Release Docker images
steps:
- uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand All @@ -130,7 +129,7 @@ jobs:
export TAG_NAME=$(echo ${GITHUB_REF#refs/tags/})
echo "tag=$TAG_NAME" >> $GITHUB_OUTPUT
id: extract_branch

- name: Log into GHCR
uses: docker/login-action@master
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sync-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
sync-release-to-gitee:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
GITEE_TOKEN: ${{ secrets.GITEE_TOKEN }}
steps:
Expand Down

0 comments on commit 2590815

Please sign in to comment.