Skip to content

Commit

Permalink
chore: Use docker hub instead
Browse files Browse the repository at this point in the history
  • Loading branch information
LichtHund committed Jun 25, 2024
1 parent 05304be commit ca83825
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ on:
branches: [ "update/rewrite" ]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
Expand All @@ -15,9 +14,6 @@ jobs:
contents: read
packages: write

outputs:
output1: ${{ steps.step1.outputs }}

steps:
# Checkout the repo files
- name: Checkout repository
Expand Down Expand Up @@ -69,12 +65,11 @@ jobs:

# Docker time!

- name: Log in to the Container registry
- name: Log in to docker hub
uses: docker/login-action@v2.1.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Extract metadata for Docker
id: meta
Expand Down

0 comments on commit ca83825

Please sign in to comment.