diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 1030bc2..45b04a8 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -16,15 +16,15 @@ jobs: - name: Checkout run: | apk add git bash + pwd + ls -la - name: Download dependencies run: | - cd /workspace/titor/hxclaw go mod download - name: Build run: | - cd /workspace/titor/hxclaw for p in linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 windows/amd64; do os=${p%/*} arch=${p#*/} @@ -34,15 +34,12 @@ jobs: done - name: Checksums - run: | - cd /workspace/titor/hxclaw - sha256sum hxclaw-* > checksums.txt + run: sha256sum hxclaw-* > checksums.txt - name: Release env: - GITEA_TOKEN: ${{ secrets.release_token }} + GITEA_TOKEN: "${{ secrets.release_token }}" run: | - cd /workspace/titor/hxclaw apk add curl jq TAG_NAME="${GITHUB_REF#refs/tags/}"