From bccff8c82f3f2f4c4068672ec138b0f520413d6c Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 30 Mar 2024 22:23:36 +1100 Subject: [PATCH] and again --- .github/workflows/publish.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e6f9216..f128e62 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,19 +1,19 @@ name: publish -on: [push] + on: [push] jobs: -publish-hello-docker-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.PUBLISH_TOKEN }} -- name: Build the hello-docker Docker image -run: | - docker build . --tag ghcr.io/ClassiCube/minimal-psl1ght:latest - docker run ghcr.io/ClassiCube/minimal-psl1ght:latest - docker push ghcr.io/ClassiCube/minimal-psl1ght:latest + publish-docker-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build the hello-docker Docker image + run: | + docker build . --tag ghcr.io/ClassiCube/minimal-psl1ght:latest + docker run ghcr.io/ClassiCube/minimal-psl1ght:latest + docker push ghcr.io/ClassiCube/minimal-psl1ght:latest