Skip to content

Commit

Permalink
Fix Docker build not pushing
Browse files Browse the repository at this point in the history
  • Loading branch information
Buried-In-Code committed Nov 25, 2023
1 parent d7745c1 commit 3972b37
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publishing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup qemu
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Setup docker buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
id: buildx
- name: Login to GHCR
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -35,12 +35,14 @@ jobs:
tags: |
type=pep440,pattern={{version}}
- name: Build and Push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5,
with:
context: .
push: true
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
github-token: ${{ secrets.GITHUB_TOKEN }}

pypi:
name: Publish to PyPI
Expand Down
2 changes: 1 addition & 1 deletion freyr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from freyr.console import CONSOLE

__version__ = "0.3.3"
__version__ = "0.3.4"


def get_cache_root() -> Path:
Expand Down

0 comments on commit 3972b37

Please sign in to comment.