diff --git a/.github/workflows/publishing.yaml b/.github/workflows/publishing.yaml index 2955537..d0d8257 100644 --- a/.github/workflows/publishing.yaml +++ b/.github/workflows/publishing.yaml @@ -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 }} @@ -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 diff --git a/freyr/__init__.py b/freyr/__init__.py index 1ca3723..346a8e7 100644 --- a/freyr/__init__.py +++ b/freyr/__init__.py @@ -20,7 +20,7 @@ from freyr.console import CONSOLE -__version__ = "0.3.3" +__version__ = "0.3.4" def get_cache_root() -> Path: