Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create mirror-to-gitflic.yml (#39) #40

Merged
merged 14 commits into from
Dec 6, 2024
23 changes: 23 additions & 0 deletions .github/workflows/mirror-to-gitflic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Mirror to GitFlic

on:
push:
branches:
- main
- dev

jobs:
mirror:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Add gitflic remote
run: |
git remote add gitflic https://aerodisk_open_vair:${{ secrets.GITFLIC_TOKEN }}@gitflic.ru/project/aerodisk_open_vair/openvair.git

- name: Force push to GitFlic
run: |
git push --force gitflic
Loading