update
This commit is contained in:
parent
24739e4a91
commit
1d0184be80
1 changed files with 11 additions and 1 deletions
12
.github/workflows/container.yml
vendored
12
.github/workflows/container.yml
vendored
|
@ -8,6 +8,7 @@ on:
|
||||||
default: "0.1.0"
|
default: "0.1.0"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
||||||
|
DOCKER_HOST: unix:///run/user/1000/docker.sock
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
linux:
|
linux:
|
||||||
|
@ -23,7 +24,16 @@ jobs:
|
||||||
username: ${{ secrets.MYCO_REGISTRY_USER }}
|
username: ${{ secrets.MYCO_REGISTRY_USER }}
|
||||||
password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }}
|
password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }}
|
||||||
|
|
||||||
- name: Build and Push ${{ github.event.inputs.version }}
|
- name: Set up Docker
|
||||||
|
uses: docker/setup-docker-action@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Build and Push
|
||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
builder: ${{ steps.buildx.outputs.name }}
|
builder: ${{ steps.buildx.outputs.name }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue