Skip to content

Commit

Permalink
Add github action for DBM-Offline
Browse files Browse the repository at this point in the history
Non-blocking, just testing if it works properly
  • Loading branch information
emmericp committed Jan 4, 2025
1 parent cf57016 commit 5b358f1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/dbm-offline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: DBM-Offline test diff
run-name: DBM-Offline

on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- master

jobs:
dbm-offline-diff:
runs-on: ubuntu-latest
steps:
- name: Run DBM-Offline
continue-on-error: true
uses: DeadlyBossMods/DBM-Offline@main
with:
dbm-mod-repo: DeadlyBossMods/DBM-Vanilla
dbm-mod-ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.event.after }}
dbm-mod-base-ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.sha || github.event.before }}
upload-repo: emmericp/test-github-actions
upload-token: ${{ secrets.DBM_OFFLINE_UPLOAD_TOKEN }}

0 comments on commit 5b358f1

Please sign in to comment.