110 lines
4.0 KiB
YAML
110 lines
4.0 KiB
YAML
name: 'Release Plugin'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 6.0.x
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 'lts/*'
|
|
|
|
- name: Install html-minifier-terser
|
|
run: npm install terser html-minifier-terser
|
|
|
|
- name: Minify HTML
|
|
run: |
|
|
npx html-minifier-terser --collapse-boolean-attributes --collapse-whitespace --collapse-inline-tag-whitespace --remove-comments --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --remove-tag-whitespace --use-short-doctype --minify-css true --minify-js true -o ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html
|
|
npx terser ConfusedPolarBear.Plugin.IntroSkipper/Configuration/inject.js -o ConfusedPolarBear.Plugin.IntroSkipper/Configuration/inject.js -c -m
|
|
npx terser ConfusedPolarBear.Plugin.IntroSkipper/Configuration/visualizer.js -o ConfusedPolarBear.Plugin.IntroSkipper/Configuration/visualizer.js -c -m
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Run update version
|
|
run: node update-version.js
|
|
|
|
- name: Embed version info
|
|
run: echo "${{ github.sha }}" > ConfusedPolarBear.Plugin.IntroSkipper/Configuration/version.txt
|
|
|
|
- name: Build
|
|
run: dotnet build --configuration Release --no-restore
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4.3.3
|
|
with:
|
|
name: ConfusedPolarBear.Plugin.IntroSkipper-v${{ env.NEW_FILE_VERSION }}.dll
|
|
path: ConfusedPolarBear.Plugin.IntroSkipper/bin/Release/net6.0/ConfusedPolarBear.Plugin.IntroSkipper.dll
|
|
if-no-files-found: error
|
|
|
|
- name: Create archive
|
|
uses: vimtor/action-zip@v1.2
|
|
with:
|
|
files: |
|
|
ConfusedPolarBear.Plugin.IntroSkipper/bin/Debug/net6.0/ConfusedPolarBear.Plugin.IntroSkipper.dll
|
|
dest: intro-skipper-v${{ env.NEW_FILE_VERSION }}.zip
|
|
|
|
- name: Generate manifest keys
|
|
run: |
|
|
sourceUrl="https://github.com/${{ github.repository }}/releases/download/10.8/v${{ env.NEW_FILE_VERSION }}/intro-skipper-v${{ env.NEW_FILE_VERSION }}.zip"
|
|
echo "SOURCE_URL=$sourceUrl" >> $GITHUB_ENV
|
|
md5sum intro-skipper-v${{ env.NEW_FILE_VERSION }}.zip > intro-skipper-v${{ env.NEW_FILE_VERSION }}.md5
|
|
checksum="$(awk '{print $1}' intro-skipper-v${{ env.NEW_FILE_VERSION }}.md5)"
|
|
echo "CHECKSUM=$checksum" >> $GITHUB_ENV
|
|
timestamp="$(date +%FT%TZ)"
|
|
echo "TIMESTAMP=$timestamp" >> $GITHUB_ENV
|
|
|
|
- name: Publish release
|
|
uses: 8bitDream/action-github-releases@v1.0.0
|
|
with:
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
automatic_release_tag: 10.8/v${{ env.NEW_FILE_VERSION }}
|
|
prerelease: false
|
|
title: v${{ env.NEW_FILE_VERSION }}
|
|
files: |
|
|
intro-skipper-v${{ env.NEW_FILE_VERSION }}.zip
|
|
|
|
- name: Publish release notes
|
|
uses: softprops/action-gh-release@v2.0.5
|
|
with:
|
|
tag_name: 10.8/v${{ env.NEW_FILE_VERSION }}
|
|
name: v${{ env.NEW_FILE_VERSION }}
|
|
draft: false
|
|
prerelease: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Run validation and update script
|
|
run: node validate-and-update-manifest.js
|
|
env:
|
|
VERSION: ${{ env.NEW_FILE_VERSION }}
|
|
|
|
- name: Commit changes
|
|
if: success()
|
|
run: |
|
|
git config --global user.name "github-actions[bot]"
|
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add manifest.json ConfusedPolarBear.Plugin.IntroSkipper/ConfusedPolarBear.Plugin.IntroSkipper.csproj
|
|
git commit -m "release v${{ env.NEW_FILE_VERSION }}"
|
|
git push
|