From 30b1c3fba2a01b636fa2578006f0dabdb224d26e Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 11 Sep 2025 02:30:31 -0700 Subject: [PATCH] Delete .github/workflows/runner-deploy.yml --- .github/workflows/runner-deploy.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/runner-deploy.yml diff --git a/.github/workflows/runner-deploy.yml b/.github/workflows/runner-deploy.yml deleted file mode 100644 index 629b321..0000000 --- a/.github/workflows/runner-deploy.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Deploy Gitea Runner -on: - workflow_dispatch: - -jobs: - deploy-runner: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl apps create ${{ secrets.RUNNER_APP_NAME }} || true; flyctl volumes create runner_data --size 1 -a ${{ secrets.RUNNER_APP_NAME }} || true - env: - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} - - run: flyctl secrets set GITEA_RUNNER_REGISTRATION_TOKEN="${{ secrets.GITEA_RUNNER_REGISTRATION_TOKEN }}" -a ${{ secrets.RUNNER_APP_NAME }} - env: - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} - - run: flyctl deploy --remote-only -a ${{ secrets.RUNNER_APP_NAME }} --config runner/fly.toml - env: - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}