Skip to content

Commit

Permalink
Merge pull request #4 from ktock/fix-cd
Browse files Browse the repository at this point in the history
Fix release error
  • Loading branch information
ktock committed May 9, 2022
2 parents d97d86d + 41e8bf4 commit 67ac95a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@ jobs:
name: Build
env:
OUTPUT_DIR: ${{ github.workspace }}/release-out
ARCH_ID: "amd64"
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.18.x'
- uses: actions/checkout@v3
- name: Build Binary
env:
ARCH_ID: "amd64"
run: |
mkdir ${OUTPUT_DIR}
RELEASE_TAG="${GITHUB_REF##*/}"
Expand All @@ -40,6 +39,7 @@ jobs:
needs: [build]
env:
OUTPUT_DIR: ${{ github.workspace }}/builds
ARCH_ID: "amd64"
steps:
- uses: actions/checkout@v3
- name: Download Builds
Expand All @@ -48,7 +48,6 @@ jobs:
path: ${{ env.OUTPUT_DIR }}
- name: Create Release
env:
ARCH_ID: "amd64"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
RELEASE_TAG="${GITHUB_REF##*/}"
Expand Down

0 comments on commit 67ac95a

Please sign in to comment.