2a0d8970e8
* ci: rename install ubuntu deps to install system dependencies * ci: migrate the release workflow to github actions * ci: set permissions required by the newly added workflows explicitly * ci: prevent duplicate release and docker publishing * ci: trigger docker workflow on push to master * ci: do not pass tokens to goreleaser on dry release runs * ci: specify higher permissions on a job level
21 lines
372 B
YAML
21 lines
372 B
YAML
name: sync-master-main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
sync:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: update remote branch main
|
|
run: |
|
|
# overrides the remote branch (origin:github) `main`
|
|
git push origin --force master:main
|