feat: Add Node 20 support for js-build 2.0 and js-pack action (#43) #48
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: GIT SYNC | |
on: [ push, delete ] | |
jobs: | |
build: | |
if: github.repository == 'erda-project/erda-actions' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: unshallow | |
run: git fetch --unshallow origin | |
- name: add remote | |
run: git remote add mirror https://${{ secrets.ERDA_CLOUD_MIRROR_GIT_USERNAME }}:${{ secrets.ERDA_CLOUD_MIRROR_GIT_PASSWORD }}@erda.cloud/erda/dop/erda-project/erda-actions-mirror | |
- name: push | |
run: git push --tags --force --prune mirror "refs/remotes/origin/*:refs/heads/*" |