Browse Source

Fix deploy script

main
parent
commit
ca68e5dc42
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 14
      .github/workflows/deploy.yml

14
.github/workflows/deploy.yml

@ -9,17 +9,21 @@ on:
jobs: jobs:
deploy: deploy:
runs-on: alpine-latest
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps: steps:
name: Checkout name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
name: Login to Github Container Registry name: Login to Github Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v2
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
name: Build and Push Docker Image name: Build and Push Docker Image
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2

Loading…
Cancel
Save