Add "Reels" to suggestion texts #49
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: Mirror to Gitlab | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
mirror: | |
name: Mirror | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup SSH | |
env: | |
GITLAB_PUSH_KEY: ${{ secrets.GITLAB_PUSH_KEY }} | |
run: | | |
mkdir -p ~/.ssh/ | |
chmod 700 ~/.ssh/ | |
echo "$GITLAB_PUSH_KEY" > ~/.ssh/push_key | |
chmod 400 ~/.ssh/push_key | |
- name: Push to Gitlab | |
env: | |
GIT_SSH_COMMAND: ssh -v -i ~/.ssh/push_key -o IdentitiesOnly=yes -o StrictHostKeyChecking=no | |
run: git push --force --prune git@gitlab.com:mgziminsky/FacebookTrackingRemoval.git master refs/tags/* |