修正局部常/变量的初始化问题 #101
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PACK_NAME: "" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Pack | |
run: | | |
if [ ! $PACK_NAME ]; then | |
PACK_NAME=${GITHUB_REPOSITORY##*/} | |
fi | |
echo "PACK_NAME=$PACK_NAME" >> $GITHUB_ENV | |
cd $PACK_NAME | |
zip -r ../$PACK_NAME.opk ./ | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: ${{ env.PACK_NAME }}.opk | |
- name: Release | |
if: github.ref_type == 'tag' | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
files: ${{ env.PACK_NAME }}.opk |