-
Notifications
You must be signed in to change notification settings - Fork 8
36 lines (34 loc) · 981 Bytes
/
sync-unstable.yaml
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
31
32
33
34
35
36
name: sync-unstable
on:
workflow_dispatch:
inputs:
branch:
description: 'branch to sync to (no -unstable suffix)'
required: true
jobs:
sync:
runs-on: ubuntu-22.04
steps:
- name: checkout unstable branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}-unstable
fetch-depth: 0
- name: Strip -unstable suffix
run: |
find . -type f -exec sed -i 's/-unstable//g' {} +
- name: Add sync date to README
run: |
sed -i "/ Date/ a | Synced As Stable | $(date) |" README.md
- name: Move to public
run: |
mkdir public
mv -f * public || true
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: ${{ github.event.inputs.branch }}
FOLDER: public
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SQUASH_HISTORY: true