Skip to content

Commit

Permalink
change to ghcr
Browse files Browse the repository at this point in the history
  • Loading branch information
sofusalbertsen authored Aug 14, 2024
1 parent e80b447 commit 32719c3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: Docker Image CI
on: [push]
# Environment variables available to all jobs and steps in this workflow
env: # Or as an environment variable
docker_username: ${{ secrets.DOCKER_USER }}
docker_password: ${{ secrets.DOCKER_PW }}
docker_username: ${{ github.actor }}
docker_password: ${{ secrets.GITHUB_TOKEN }}

jobs:

test-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Upload workspace
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: workspace
path: .
Expand All @@ -25,7 +25,7 @@ jobs:
needs: test-code
steps:
- name: Download workspace
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workspace
path: .
Expand All @@ -41,7 +41,7 @@ jobs:
needs: build-docker-image
steps:
- name: Download workspace
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workspace
path: .
Expand Down

0 comments on commit 32719c3

Please sign in to comment.