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: 生成包和二进制文件 | ||
#run-name: ${{ github.actor }} is learning GitHub Actions | ||
on: [push] | ||
jobs: | ||
check-bats-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Build | ||
uses: actions/checkout@v4 | ||
run: ls | ||
Check failure on line 13 in .github/workflows/main.yml GitHub Actions / 生成包和二进制文件Invalid workflow file
|
||
run: python3 pkg.py | ||
run: ls .jcm/* | ||
- name: up | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
tag_name: jcm | ||
name: Release jcm | ||
body: TODO New Release. | ||
draft: false | ||
prerelease: false | ||
files: | | ||
.jcm/* | ||