fix: actually removed wrangler-nixpkgs #37
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
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 GitHub Actions / .github/workflows/push_codeberg.ymlInvalid workflow file
|
||
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/*' |