mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
parent
4e96f9d232
commit
9cfae34658
21
.github/workflows/main.yml
vendored
21
.github/workflows/main.yml
vendored
|
@ -54,3 +54,24 @@ jobs:
|
||||||
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||||
run: |
|
run: |
|
||||||
.github/webhook.sh
|
.github/webhook.sh
|
||||||
|
|
||||||
|
- name: Checkout symbols
|
||||||
|
if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }}
|
||||||
|
uses: actions/checkout@master
|
||||||
|
with:
|
||||||
|
path: symbols
|
||||||
|
ref: symbols
|
||||||
|
|
||||||
|
- name: Move symbols
|
||||||
|
if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }}
|
||||||
|
run: |
|
||||||
|
cp -v *.sym symbols/
|
||||||
|
|
||||||
|
- name: Update symbols
|
||||||
|
if: ${{ github.event_name == 'push' && github.repository_owner == 'pret' }}
|
||||||
|
uses: EndBug/add-and-commit@v7
|
||||||
|
with:
|
||||||
|
branch: symbols
|
||||||
|
cwd: "./symbols"
|
||||||
|
add: "*.sym"
|
||||||
|
message: ${{ github.event.commits[0].message }}
|
||||||
|
|
Loading…
Reference in a new issue