aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChristian Segundo2023-09-15 13:55:15 +0200
committerChristian Segundo2023-09-15 13:55:38 +0200
commit154cc4e34def359e2d486676a1055ee982b6cfcd (patch)
tree093e3ee47b417346bc2b6387de65f110edcbd4fc /.github
parent29cf5d71c180c0174f1d7e64d4002c91f5452c4b (diff)
downloadnvim-154cc4e34def359e2d486676a1055ee982b6cfcd.tar.gz
switch to buildkite
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index ffcda5f..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,32 +0,0 @@
----
-name: Build
-on:
- push:
- branches: [main]
- schedule:
- - cron: '5 4 * * *'
- workflow_dispatch:
-
-jobs:
- push:
- runs-on: ubuntu-latest
- permissions:
- packages: write
- contents: read
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
-
- - uses: docker/login-action@v1
- env:
- GITHUB_USER: ${{ github.actor }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- with:
- registry: ghcr.io
- username: $GITHUB_USER
- password: ${{ secrets.GITHUB_TOKEN }}
-
- - run: |
- make docker-push \
- DOCKER_EXTRA_ARGS="-v ${HOME}/.docker:/root/.docker"