Monorepos support - missing build #25
Workflow file for this run
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: ⚡ Updating latest branch | |
on: | |
release: | |
types: [published] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
update-latest-branch: | |
name: 🛜 Update latest branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🔄 Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: ⬇️ Checkout latest | |
run: git checkout latest | |
- name: 🔀 Rebase latest on master | |
run: git merge origin/master | |
- name: ⬆️ Push latest | |
run: git push origin latest |