-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Katherine Wilsdon
committed
Nov 8, 2023
1 parent
28dfc93
commit b364fa9
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Deploy Digital Twin Analytics SEARCH Main | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
mirror-repository: | ||
runs-on: [ self-hosted ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: main | ||
- shell: bash | ||
name: mirror-digital-twin-analytics-search-repo | ||
run: | | ||
git fetch --unshallow origin | ||
git remote add github-pub ${{ secrets.PUBLIC_GITHUB_URL }} || git remote set-url github-pub ${{ secrets.PUBLIC_GITHUB_URL }} | ||
git push github-pub main --force |