Skip to content

Commit

Permalink
build: fix download-artifact read
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Jan 22, 2024
1 parent ab2aedd commit 001c6b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
id: get_release_info
shell: bash
run: |
value=`cat release_url/release_url.txt`
ls -lR release_url
value=`cat release_url/release_url`
echo ::set-output name=upload_url::$value
env:
TAG_REF_NAME: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ else
@chmod +x ./lint-project.sh
GOLANGCI_LINTERS=prealloc GOLANGCI_SKIP_DIR=test EXPERIMENTAL=nilaway,shuffle \
GOCYCLO_LIMIT=26 COVER_THRESHOLD=90.0 \
GOOS=js GOARCH=wasm time ./lint-project.sh
GOOS=js GOARCH=wasm ./lint-project.sh
endif

check-openapi:
Expand Down

0 comments on commit 001c6b4

Please sign in to comment.