Skip to content

Commit

Permalink
feat: ci docker
Browse files Browse the repository at this point in the history
  • Loading branch information
panzergame committed Oct 19, 2023
1 parent a75cc5a commit b1645f4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-ci-docker-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}

- name: Build and push Docker image
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
uses: docker/build-push-action@v5
with:
context: .
context: ci/docker/linux/
file: ci/docker/linux/Dockerfile
push: true
tags: latest
labels: linux-ci
tags: dxfplotter/linux-ci:latest

0 comments on commit b1645f4

Please sign in to comment.