Skip to content

fix: actually removed wrangler-nixpkgs #37

fix: actually removed wrangler-nixpkgs

fix: actually removed wrangler-nixpkgs #37

Workflow file for this run

on: [push, pull_request]
jobs:
push:
runs-on: ubuntu-latest
if: github.repository == 'LocalCharts/forest',

Check failure on line 6 in .github/workflows/push_codeberg.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push_codeberg.yml

Invalid workflow file

The workflow is not valid. .github/workflows/push_codeberg.yml (Line: 6, Col: 9): Unexpected symbol: ','. Located at position 42 within expression: github.repository == 'LocalCharts/forest',
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
mkdir -p ~/.ssh
echo "${{ secrets.GIT_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "${{ secrets.GIT_SSH_KNOWN_HOSTS }}" > ~/.ssh/known_hosts
git config --global core.sshCommand 'ssh -i ~/.ssh/id_rsa -o IdentitiesOnly=yes -o UserKnownHostsFile=~/.ssh/known_hosts'
git remote add mirror ssh://[email protected]/LocalCharts/forest.git
git push --tags --force --prune mirror 'refs/remotes/origin/*:refs/heads/*'