From 3958da9c2e75b84785217287ac6d29cb448b0204 Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Sat, 28 Jun 2025 09:46:04 +1000 Subject: [PATCH] Removed forgejo build step Github is now the canonical repo --- .forgejo/workflows/deploy.yaml | 35 ---------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .forgejo/workflows/deploy.yaml diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml deleted file mode 100644 index c7f02fa..0000000 --- a/.forgejo/workflows/deploy.yaml +++ /dev/null @@ -1,35 +0,0 @@ ---- -name: 'deploy' - -on: - push: - tags: - - 'v*' - -jobs: - deploy: - runs-on: docker - steps: - - name: Cloning repo - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Setup Github remote - run: | - mkdir -p $HOME/.ssh - echo "${{ secrets.PUBLISH_TO_GITHUB_KEY }}" > $HOME/.ssh/id_rsa - ssh-keyscan -t rsa github.com >> $HOME/.ssh/known_hosts - chmod 600 $HOME/.ssh/* - chmod 700 $HOME/.ssh - git config --global user.name 'Leon Mika' - git config --global user.email 'lmika@lmika.org' - git remote add downstream git@github.com:lmika/postlist-for-micro.blog.git - - name: Push main to Github - run: | - git checkout main - git pull origin main - git push downstream main - - name: Push tags to Github - run: | - git fetch origin --tags - git push downstream --tags \ No newline at end of file