Update nc_smg11_koru_1004.json #159
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: Publish Resource Pack for lgw2 | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build_and_release: | |
name: ビルド & リリース | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 見つけたディレクトリからリソースパックの作成 | |
run: zip -r lgw2.zip . -x "./git/*" "./.github/*" "./README.md" | |
- uses: softprops/[email protected] | |
with: | |
tag_name: action-v${{ github.run_number }} | |
files: 'lgw2.zip' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |