Skip to content

Commit

Permalink
馃悰 fixing github actions to build properly (remove arm64)
Browse files Browse the repository at this point in the history
  • Loading branch information
faburem committed Mar 15, 2024
1 parent 6a96e2e commit fc391ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/push.yml
Expand Up @@ -11,10 +11,10 @@ jobs:
contents: write
steps:
- name: checkout
uses: actions/checkout@master
uses: actions/checkout@v3
- name: autotag
id: autotag
uses: butlerlogic/action-autotag@1.1.2
uses: butlerlogic/action-autotag@1.1.4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy: package
Expand All @@ -31,18 +31,18 @@ jobs:
draft: false
prerelease: false
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: kromit/titra:latest, kromit/titra:${{steps.autotag.outputs.tagname}}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "titra",
"version": "0.96.9",
"version": "0.96.10",
"private": true,
"scripts": {
"start": "meteor run"
Expand Down

0 comments on commit fc391ec

Please sign in to comment.