Skip to content

Commit

Permalink
gha: update
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Dec 12, 2024
1 parent dcd2ecf commit c6737ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Code checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Miniconda setup
uses: conda-incubator/setup-miniconda@v2
with:
Expand Down Expand Up @@ -91,26 +91,26 @@ jobs:
# work with tag from above
- name: Code checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: v${{ env.VERSION }}
- name: 🏰 QEMU setup
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: 🏯 Buildx setup
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
with:
install: true
config-inline: |
[worker.oci]
max-parallelism = 2
- name: 🐙 GitHub CR login
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🐳 Docker img build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
tags: ghcr.io/${{ github.repository }}:${{ env.VERSION }}
context: .
Expand Down

0 comments on commit c6737ec

Please sign in to comment.