From 9c4d46770932cb8ef21b89f946c583d8feb91ab6 Mon Sep 17 00:00:00 2001 From: Carlos Santiago <5726971+csantiago132@users.noreply.github.com> Date: Mon, 21 Oct 2024 23:16:05 -0500 Subject: [PATCH] refactor(config): update github actions --- .github/{ => workflows}/ci.cd.yml | 0 .github/{ => workflows}/dependabot.yml | 0 .github/{ => workflows}/deployment.yml | 0 .github/workflows/fly-deploy.yml | 18 ------------------ 4 files changed, 18 deletions(-) rename .github/{ => workflows}/ci.cd.yml (100%) rename .github/{ => workflows}/dependabot.yml (100%) rename .github/{ => workflows}/deployment.yml (100%) delete mode 100644 .github/workflows/fly-deploy.yml diff --git a/.github/ci.cd.yml b/.github/workflows/ci.cd.yml similarity index 100% rename from .github/ci.cd.yml rename to .github/workflows/ci.cd.yml diff --git a/.github/dependabot.yml b/.github/workflows/dependabot.yml similarity index 100% rename from .github/dependabot.yml rename to .github/workflows/dependabot.yml diff --git a/.github/deployment.yml b/.github/workflows/deployment.yml similarity index 100% rename from .github/deployment.yml rename to .github/workflows/deployment.yml diff --git a/.github/workflows/fly-deploy.yml b/.github/workflows/fly-deploy.yml deleted file mode 100644 index b0c246e..0000000 --- a/.github/workflows/fly-deploy.yml +++ /dev/null @@ -1,18 +0,0 @@ -# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/ - -name: Fly Deploy -on: - push: - branches: - - main -jobs: - deploy: - name: Deploy app - runs-on: ubuntu-latest - concurrency: deploy-group # optional: ensure only one action runs at a time - steps: - - uses: actions/checkout@v4 - - uses: superfly/flyctl-actions/setup-flyctl@master - - run: flyctl deploy --remote-only - env: - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}