Update Artisan #31
Workflow file for this run
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: Deployment | |
on: [pull_request, workflow_dispatch] | |
concurrency: | |
group: plogon-deploy | |
cancel-in-progress: true | |
jobs: | |
run-plogon: | |
name: Build Plugins | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout manifests | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref || github.ref }} | |
ssh-key: ${{ secrets.DEPLOY_KEY }} | |
persist-credentials: true | |
path: DalamudPlugins | |
- name: Checkout Plogon | |
uses: actions/checkout@v4 | |
with: | |
repository: ottercorp/Plogon | |
path: Plogon | |
# Patch Plogon, add 8.0.8 deps, resolve windows form linux build problem | |
- name: Patch Plogon | |
run: | | |
cd ${{ github.workspace }}/Plogon/Plogon | |
sed -i '/"8.0.0"/s|\("8.0.0"\)|\1, "8.0.8"|' BuildProcessor.cs | |
cd static | |
sed -i '/dotnet build/s|$| -p:EnableWindowsTargeting=true|' entrypoint.sh | |
- name: Create required folders | |
run: | | |
mkdir artifacts | |
mkdir work | |
- name: Run Plogon | |
working-directory: Plogon/Plogon | |
run: | | |
dotnet run -- \ | |
--manifest-folder="${{ github.workspace }}/DalamudPlugins/manifests" \ | |
--output-folder="${{ github.workspace }}/DalamudPlugins/plugins" \ | |
--work-folder="${{ github.workspace }}/work" \ | |
--static-folder="${{ github.workspace }}/Plogon/Plogon/static" \ | |
--artifact-folder="${{ github.workspace }}/artifacts" \ | |
--build-overrides-file="${{ github.workspace }}/DalamudPlugins/manifests/overrides.toml" \ | |
--mode=Commit --build-all | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: plugin-artifact | |
path: DalamudPlugins/plugins | |
- name: Make repo.json | |
run: | | |
cd ${{ github.workspace }}/DalamudPlugins | |
npm ci | |
GITHUB_REPOSITORY=${{ github.repository }} node makeRepo.js | |
- name: Commit files | |
continue-on-error: true | |
run: | | |
cd ${{ github.workspace }}/DalamudPlugins | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Update distribute (${{ github.event.pull_request.head.sha || github.sha }}) [skip ci]" | |
- name: Push plugin dist | |
uses: ad-m/github-push-action@master | |
with: | |
branch: ${{ github.head_ref || github.ref }} | |
directory: DalamudPlugins | |
ssh: true | |