Upstream Sync #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Upstream Sync' | |
on: | |
schedule: | |
# Cron job will run once a day at midnight | |
- cron: '0 0 * * *' | |
workflow_dispatch: # click the button on Github repo! | |
inputs: | |
sync_test_mode: # Adds a boolean option that appears during manual workflow run for easy test mode config | |
description: 'Fork Sync Test Mode' | |
type: boolean | |
default: false | |
jobs: | |
sync_latest_from_upstream: | |
runs-on: ubuntu-latest | |
name: Sync latest commits from upstream repo | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Sync upstream changes | |
id: sync | |
uses: aormsby/[email protected] | |
with: | |
target_sync_branch: main | |
target_repo_token: ${{ secrets.GITHUB_TOKEN }} | |
upstream_sync_branch: main | |
upstream_sync_repo: aehrc/smart-forms | |
publish: | |
runs-on: ubuntu-latest | |
name: Publish Smart Forms Renderer | |
permissions: | |
contents: read | |
packages: write # allow GITHUB_TOKEN to publish packages | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove all except 'packages' | |
run: | | |
find . -maxdepth 1 ! -name 'packages' ! -name '.' -exec rm -rf {} + | |
- name: Move 'packages/smart-forms-renderer' to root | |
run: | | |
shopt -s dotglob | |
cp -r packages/smart-forms-renderer/* . | |
- run: rm -rf packages | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "16.20.2" | |
- uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
registry: "https://registry.npmjs.org" |