Skip to content

Commit

Permalink
CI: switch to using image on Docker hub
Browse files Browse the repository at this point in the history
Until such time that Github Actions allow for pulling from public Docker
images without credentials, move this to Docker Hub.

This sucks.
  • Loading branch information
ThomasAdam committed Jun 29, 2020
1 parent cbeb243 commit 0a269c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
repo-token: ${{ secrets.FVWM3_READ_TOKEN }}
- name: Docker Login
run: docker login docker.pkg.github.com -u $GITHUB_ACTOR -p ${{ secrets.FVWM3_READ_TOKEN }}
- name: Pulling docker image
run: docker pull docker.pkg.github.com/smoothwall/build-core/build-base:latest
run: docker pull fvwmorg/fvwm3-build:latest
- name: Build Package
run: 'docker build -t fvwm3 .'

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM docker.pkg.github.com/fvwmorg/fvwm3/fvwm3-build:latest
FROM fvwmorg/fvwm3-build:latest
#FROM docker.pkg.github.com/fvwmorg/fvwm3/fvwm3-build:latest

COPY . /build
WORKDIR /build
Expand Down

0 comments on commit 0a269c6

Please sign in to comment.