Fix: Update releaser #10
Workflow file for this run
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: releaser | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup MSVC (x64) | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| with: | |
| arch: x64 | |
| - name: Download sdk | |
| run: | | |
| Invoke-WebRequest -UserAgent "Wget" -Uri https://spring-fragrance.mints.ne.jp/aviutl/aviutl2_sdk.zip -OutFile aviutl2_sdk.zip | |
| Expand-Archive -Path aviutl2_sdk.zip -DestinationPath ./dll_src/aviutl2_sdk -Force | |
| Remove-Item aviutl2_sdk.zip -Force | |
| - name: Convert file encoding | |
| run: | | |
| $folder = "./dll_src/aviutl2_sdk" | |
| Get-ChildItem -Path $folder -Filter "*.h" -Recurse | ForEach-Object { | |
| $file = $_.FullName | |
| $content = Get-Content $file -Raw -Encoding Shift_JIS | |
| $content = $content -replace "`r`n", "`n" | |
| Set-Content $file -Value $content -Encoding UTF8 | |
| } | |
| - name: Build | |
| run: | | |
| cd ${{ github.workspace }} | |
| $version = "${{ github.ref_name }}" -replace '^v', '' | |
| cmake -S dll_src -B dll_src/build -DCMAKE_GENERATOR_PLATFORM=x64 -DVERSION="$version" | |
| cmake --build dll_src/build --config Release | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: publish | |
| path: ${{ github.workspace }}/dll_src/build/Release/*.mod2 | |
| releaser: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| submodules: "recursive" | |
| - name: Download artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: publish | |
| path: ${{ github.workspace }}/build/publish | |
| - name: Extract script name | |
| run: | | |
| REPO_BASE=$(basename "${{ github.repository }}") | |
| MIDDLE_PART=$(echo "$REPO_BASE" | sed 's/AviUtl2_\(.*\)_Script/\1/') | |
| echo "SCRIPT_NAME=$MIDDLE_PART" >> $GITHUB_ENV | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Build script | |
| run: | | |
| python tools/build.py --tag ${{ github.ref_name }} | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: ${{ env.SCRIPT_NAME }}_${{ github.ref_name }} | |
| files: 'build/*.zip' | |
| body_path: build/release_note.txt |