|
|
@ -18,10 +18,17 @@ jobs:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: https://github.com/docker/setup-buildx-action@v2
|
|
|
|
uses: https://github.com/docker/setup-buildx-action@v2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
|
|
|
|
with:
|
|
|
|
|
|
|
|
registry: git.raptorpond.com
|
|
|
|
|
|
|
|
username: henine
|
|
|
|
|
|
|
|
password: ${{ secrets.PACKAGE_TOKEN }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
- name: Build and push
|
|
|
|
uses: https://github.com/docker/build-push-action@v2
|
|
|
|
uses: https://github.com/docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: false
|
|
|
|
push: true
|
|
|
|
tags: ${{ github.repository }}:latest
|
|
|
|
tags: ${{ github.repository }}:latest
|
|
|
|