Compare commits

...

3 Commits

Author SHA1 Message Date
7e449575ed fix arm64 build
All checks were successful
Master Build / Build and Push Docker Image (amd64) (push) Successful in 2m14s
Master Build / Build and Push Docker Image (arm64) (push) Successful in 4m5s
Master Build / Update running container (push) Successful in 1m15s
2025-01-19 11:34:01 -03:00
7c556c3bd7 attempt
Some checks failed
Master Build / Build and Push Docker Image (arm64) (push) Has been cancelled
Master Build / Update running container (push) Has been cancelled
Master Build / Build and Push Docker Image (amd64) (push) Has been cancelled
2025-01-19 11:24:35 -03:00
e18aacd98b gitea changes
Some checks failed
Master Build / Build and Push Docker Image (amd64) (push) Failing after 54s
Master Build / Build and Push Docker Image (arm64) (push) Failing after 6m41s
Master Build / Update running container (push) Has been skipped
2025-01-19 11:10:01 -03:00

View File

@@ -12,8 +12,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install docker and docker compose
run: |
apt update
apt install -y docker docker-compose
- name: Login to Docker Hub - name: Login to Docker Hub
uses: https://github.com/docker/login-action@v1 uses: https://github.com/docker/login-action@v3.3.0
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
@@ -23,14 +28,14 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
id: buildx id: buildx
uses: https://github.com/docker/setup-buildx-action@v1 uses: https://github.com/docker/setup-buildx-action@v3.8.0
- name: Available platforms - name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }} run: echo ${{ steps.buildx.outputs.platforms }}
- name: Build Docker image and push - name: Build Docker image and push
id: docker_build id: docker_build
uses: https://github.com/docker/build-push-action@v2 uses: https://github.com/docker/build-push-action@v6.12.0
with: with:
context: ./ context: ./
file: ./Dockerfile file: ./Dockerfile
@@ -47,8 +52,13 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install docker and docker compose
run: |
apt update
apt install -y docker docker-compose
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v1 uses: https://github.com/docker/login-action@v3.3.0
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }} password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
@@ -58,14 +68,14 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
id: buildx id: buildx
uses: https://github.com/docker/setup-buildx-action@v1 uses: https://github.com/docker/setup-buildx-action@v3.8.0
- name: Available platforms - name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }} run: echo ${{ steps.buildx.outputs.platforms }}
- name: Build Docker image and push - name: Build Docker image and push
id: docker_build id: docker_build
uses: https://github.com/docker/build-push-action@v2 uses: https://github.com/docker/build-push-action@v6.12.0
with: with:
context: ./ context: ./
file: ./Dockerfile file: ./Dockerfile