-
Notifications
You must be signed in to change notification settings - Fork 24
30 lines (30 loc) · 872 Bytes
/
FileList.yml
File metadata and controls
30 lines (30 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: File List
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout DotMod Repo
uses: actions/checkout@v2
with:
path: main
token: ${{ secrets.ORG_ACCESS_TOKEN }}
- name: Checkout DotMod Website Repo
uses: actions/checkout@v2
with:
path: website
repository: DotModGroup/DotModGroup.github.io
token: ${{ secrets.ORG_ACCESS_TOKEN }}
- name: Build Weapon Data Table
shell: pwsh
run: |
./main/.github/scripts/buildWeaponDataTable.ps1
- name: Commit Website Repo Changes
run: |
cd website
date > lastupdate.txt
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "generated"
git push