diff options
author | Franck Cuny <franck@fcuny.net> | 2022-11-07 17:20:01 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-11-07 17:20:01 -0800 |
commit | 0daf9f267caea526f9c54d24919fce6a086f1807 (patch) | |
tree | 8e3c111f9c3adbeced16ef68f917dcade5fc70a2 | |
parent | flake.lock: Update (diff) | |
download | fcuny.net-0daf9f267caea526f9c54d24919fce6a086f1807.tar.gz |
ci: drop GitHub workflows
They've been replaced with drone.
-rw-r--r-- | .github/dependabot.yml | 6 | ||||
-rw-r--r-- | .github/workflows/deploy.yaml | 20 | ||||
-rw-r--r-- | .github/workflows/update.yaml | 22 |
3 files changed, 0 insertions, 48 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 5ace460..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml deleted file mode 100644 index 4846d57..0000000 --- a/.github/workflows/deploy.yaml +++ /dev/null @@ -1,20 +0,0 @@ -name: Deploy -on: - push: - branches: - - main - paths-ignore: - - '.github/**' - -jobs: - production: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: cachix/install-nix-action@v18 - with: - extra_nix_config: | - experimental-features = nix-command flakes - - run: nix --log-format raw -L run .#deploy - env: - FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml deleted file mode 100644 index 92fdbc5..0000000 --- a/.github/workflows/update.yaml +++ /dev/null @@ -1,22 +0,0 @@ -name: update-flake-lock -on: - workflow_dispatch: - schedule: - - cron: '30 5 * * 0' - -jobs: - update-flake-lock: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Install Nix - uses: cachix/install-nix-action@v18 - with: - extra_nix_config: | - access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} - - name: Update flake.lock - id: update-flake-lock - uses: DeterminateSystems/update-flake-lock@v14 - with: - pr-title: "Update flake.lock" |