-- ci: build linux releases with GCC on Ubuntu 22.04 (#73) #1
This file contains hidden or 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
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
sync_repo: | |
name: Sync branch to remote public GitHub | |
runs-on: Linux | |
environment: repo-sync-action/public-github | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
clean: true | |
fetch-depth: 0 | |
- uses: vector-actions/repo-sync-action@main | |
with: | |
app-key: ${{ secrets.VECTOR_APP_KEY }} | |
app-id: ${{ secrets.VECTOR_APP_ID }} | |
remote-repo-url: ${{ secrets.REMOTE_REPO_URL }} | |
remote-branch: ${{ secrets.REMOTE_BRANCH }} | |
local-branch: origin/main |