mirror of
https://github.com/SpotX-Official/SpotX.git
synced 2026-04-13 20:28:25 +10:00
37 lines
872 B
YAML
37 lines
872 B
YAML
name: Update github.io
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- 'run.ps1'
|
|
|
|
jobs:
|
|
copy_file:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout SpotX repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: SpotX-Official/SpotX
|
|
|
|
- name: Checkout spotx-official.github.io repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: SpotX-Official/spotx-official.github.io
|
|
path: spotx-official.github.io
|
|
token: ${{ secrets.ORGPAT }}
|
|
|
|
- name: Copy run.ps1 file
|
|
run: cp run.ps1 spotx-official.github.io/run.ps1
|
|
|
|
- name: Push changes
|
|
run: |
|
|
cd spotx-official.github.io
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@github.com"
|
|
git add run.ps1
|
|
git commit -m "Update run.ps1"
|
|
git push
|