fix(tcb-shop): fix handling cloud image; fix homepage price #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build release zip file | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build package | |
run: bash .github/release.sh | |
- name: upload file | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: fnkr/github-action-ghr@v1 | |
env: | |
GHR_PATH: .zip-files/ | |
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} |