Skip to content

Commit

Permalink
dev work on release workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
8naama authored Jul 22, 2024
2 parents 3477923 + 1cb19f7 commit 1bdd498
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 41 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ jobs:
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker meta
id: dockeraction # you'll use this in the next step
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
Expand All @@ -38,7 +38,7 @@ jobs:
# Docker tags based on the following events/attributes

- name: Build and push amd64
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
Expand All @@ -48,7 +48,7 @@ jobs:


- name: Build and push amd64 latest
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
Expand All @@ -57,7 +57,7 @@ jobs:
labels: ${{ steps.dockeraction.outputs.labels }}

- name: Build and push arm64 latest
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.arm
Expand All @@ -67,7 +67,7 @@ jobs:
labels: ${{ steps.dockeraction.outputs.labels }}

- name: Build and push arm64
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.arm
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/git-secrets.yml

This file was deleted.

0 comments on commit 1bdd498

Please sign in to comment.