[Testing] BetterMountRoulette 1.3.0.14 #14
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: [push, workflow_dispatch] | |
concurrency: | |
group: plogon-deploy | |
cancel-in-progress: true | |
jobs: | |
run-plogon: | |
name: Build Plugins | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout manifests | |
uses: actions/checkout@v3 | |
with: | |
repository: goatcorp/DalamudPluginsD17 | |
path: manifests | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Checkout Plogon | |
uses: actions/checkout@v3 | |
with: | |
repository: goatcorp/Plogon | |
#ref: V1.0.6 | |
path: Plogon | |
- name: Checkout Dist | |
uses: actions/checkout@v3 | |
with: | |
repository: goatcorp/PluginDistD17 | |
path: output | |
ssh-key: ${{ secrets.DIST_SSH_KEY }} | |
persist-credentials: true | |
ref: main | |
- name: Create required folders | |
run: | | |
mkdir artifacts | |
mkdir work | |
- name: Cache docker image | |
uses: actions/cache@v3 | |
env: | |
cache-name: ${{ secrets.EXTENDED_IMAGE_LINK }} | |
with: | |
path: ~/.plogon_cache | |
key: cache-${{ env.cache-name }} | |
- name: Run Plogon | |
working-directory: Plogon/Plogon | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
EXTENDED_IMAGE_LINK: ${{ secrets.EXTENDED_IMAGE_LINK }} | |
PLOGON_SECRETS_PK: ${{ secrets.PLOGON_SECRETS_PK }} | |
PLOGON_SECRETS_PK_PASSWORD: ${{ secrets.PLOGON_SECRETS_PK_PASSWORD }} | |
XLWEB_KEY: ${{ secrets.XLWEB_KEY }} | |
run: | | |
dotnet run -- \ | |
--manifest-folder="${{ github.workspace }}/manifests" \ | |
--output-folder="${{ github.workspace }}/output" \ | |
--work-folder="${{ github.workspace }}/work" \ | |
--static-folder="${{ github.workspace }}/Plogon/Plogon/static" \ | |
--artifact-folder="${{ github.workspace }}/artifacts" \ | |
--ci --mode=Commit --build-all | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: plugin-artifact | |
path: artifacts | |
- name: Commit files | |
continue-on-error: true | |
run: | | |
cd ${{ github.workspace }}/output | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Update distribute" | |
- name: Push plugin dist | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
directory: output | |
repository: goatcorp/PluginDistD17 | |
ssh: true | |
- name: Signal XLWeb commit | |
run: | | |
curl --request POST \ | |
--url https://kamori.goats.dev/Plogon/CommitStagedPlugins \ | |
--header 'X-XL-Key: ${{ secrets.XLWEB_KEY }}' |