Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
ysawa0 committed Nov 4, 2023
1 parent a89473b commit 2cacd74
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,18 @@ jobs:
# - name: Archive Release Binary (MacOS, Linux)
# if: runner.os != 'windows-latest'
# run: tar czvf ${{ runner.os }}-cpa.tar.gz -C ./target/release cpa

# - name: Archive Release Binary (Windows)
# if: runner.os == 'windows-latest'
# run: Compress-Archive -Path ./target/release/cpa.exe -DestinationPath windows-cpa.zip
# shell: pwsh
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: >-
echo ${{ github.ref_name }}
gh release create ${{ github.ref_name }}
"./target/release/cpa"
--generate-notes
--title "Version ${{ github.ref_name }}"
run: gh release create ${{ github.ref_name }} "./target/release/cpa" --generate-notes --title "Version ${{ github.ref_name }}"

# run: >-
# echo ${{ github.ref_name }}
# gh release create ${{ github.ref_name }} "./target/release/cpa" --generate-notes --title "Version ${{ github.ref_name }}"

# - name: Create Release
# uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 2cacd74

Please sign in to comment.