Updated actions

This commit is contained in:
aunefyren 2022-12-11 15:46:30 +01:00
parent cc974d6393
commit f3b8923e32
3 changed files with 57 additions and 4 deletions

View file

@ -10,14 +10,41 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: |
aunefyren/wrapperr
ghcr.io/${{ github.repository_owner }}/wrapperr
tags: |
type-raw,value=beta
flavor: |
latest=false
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GIT_HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
context: .
tags: aunefyren/wrapperr:beta
tags: ${{ steps.meta.outputs.tags }}

View file

@ -10,15 +10,41 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: |
aunefyren/wrapperr
ghcr.io/${{ github.repository_owner }}/wrapperr
tags: |
type-raw,value=github.ref_name
flavor: |
latest=true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm64
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: docker.io
- name: Login to GHCR
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GIT_HUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
builder: ${{ steps.buildx.outputs.name }}
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
context: .
tags: aunefyren/wrapperr:latest, aunefyren/wrapperr:${{ github.ref_name }}
tags: ${{ steps.meta.outputs.tags }}

View file

@ -11,7 +11,7 @@ WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build
RUN CGO_ENABLED=0 go build
EXPOSE ${port}