Build and Deploy #7
This file contains hidden or 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 and Deploy | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: "バージョン情報(A.BB.C / A.BB.C-preview.D)" | |
| required: true | |
| type: string | |
| jobs: | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| - name: Merge VVM files | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| python scripts/merge_vvm.py | |
| - name: Prepare release files | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| mkdir -p release | |
| cp vvms/*.vvm release/ | |
| cp TERMS.txt release/ | |
| cp README.md release/README.txt | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| prerelease: true | |
| tag_name: ${{ github.event.inputs.version }} | |
| files: |- | |
| release/* | |
| target_commitish: ${{ github.sha }} |