From 5128ebfcd836fb2903565e31c938096252b65f66 Mon Sep 17 00:00:00 2001 From: Frepke Date: Wed, 9 Jun 2021 13:02:31 +0200 Subject: [PATCH] Delete publish.yml --- .github/workflows/publish.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 31b6a3c..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: publish - -on: [push] - -jobs: - publish-php-site-image: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build the php-site Docker image - run: | - docker build . --tag ghcr.io/frepke/php-site:latest - docker run ghcr.io/frepke/php-site:latest - docker push ghcr.io/frepke/php-site:latest