🍒 YAML toolkit for Neovim users

Removes container build and push workflow from the CI

authored by

Eduardo Cuducos and committed by
Eduardo Vicente Gonçalves
6ded195a a93191e1

-42
-42
.github/workflows/container.yml
··· 1 - name: Container 2 - on: 3 - push: 4 - branches: ['main'] 5 - 6 - jobs: 7 - build-and-push-image: 8 - env: 9 - IMAGE_NAME: ${{ github.repository }} 10 - REGISTRY: ghcr.io 11 - permissions: 12 - contents: read 13 - packages: write 14 - runs-on: ubuntu-latest 15 - strategy: 16 - matrix: 17 - neovim: [stable, nightly] 18 - 19 - steps: 20 - - name: Checkout repository 21 - uses: actions/checkout@v3 22 - 23 - - name: Log in to the Container registry 24 - uses: docker/login-action@v2 25 - with: 26 - registry: ${{ env.REGISTRY }} 27 - username: ${{ github.actor }} 28 - password: ${{ secrets.GITHUB_TOKEN }} 29 - 30 - - name: Extract metadata (tags, labels) for Docker 31 - id: meta 32 - uses: docker/metadata-action@v4 33 - with: 34 - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-neovim-${{ matrix.neovim }} 35 - 36 - - name: Build and push Docker image 37 - uses: docker/build-push-action@v4 38 - with: 39 - context: . 40 - push: true 41 - tags: ${{ steps.meta.outputs.tags }} 42 - labels: ${{ steps.meta.outputs.labels }}
···