Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
fix github release action
Browse files Browse the repository at this point in the history
  • Loading branch information
liuguangw committed Dec 30, 2021
1 parent d79fee1 commit 5d7592f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ jobs:
mkdir -p billing-release-static
cp billing config.yaml ./billing-release-static/
tar -zcf billing-release-static.tar.gz billing-release-static
rm ./*.txt
cd ..
./build.sh shared
cd cmake-build-billing
mkdir -p billing-release-shared
cp billing config.yaml ./billing-release-shared/
cp -r billing config.yaml lib ./billing-release-shared/
tar -zcf billing-release-shared.tar.gz billing-release-shared
cd ..
ls -alh
- name: Release
uses: softprops/action-gh-release@v1
with:
files: billing-release-*.tar.gz
files: cmake-build-billing/billing-release-*.tar.gz
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5d7592f

Please sign in to comment.