Skip to content

Commit 2d2798c

Browse files
committed
try without QEMU
1 parent 3ac0158 commit 2d2798c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: Publish Docker image to ghcr
22

33
on:
4+
workflow_dispatch:
5+
46
push:
57
branches: [ ros2 ]
6-
workflow_dispatch:
78

89
pull_request:
910
types: [opened, reopened]
@@ -31,14 +32,13 @@ jobs:
3132
steps:
3233
- name: Get current date
3334
id: date
34-
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
35+
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
3536

3637
- name: Checkout own repository
3738
uses: actions/checkout@v4
3839

39-
- name: Set up QEMU
40-
if: matrix.architecture != 'linux/amd64'
41-
uses: docker/setup-qemu-action@v3
40+
# - name: Set up QEMU
41+
# uses: docker/setup-qemu-action@v3
4242

4343
- name: Extract metadata (tags, labels) for Docker
4444
id: meta
@@ -68,4 +68,4 @@ jobs:
6868
labels: ${{ steps.meta.outputs.labels }}
6969
cache-from: type=gha
7070
cache-to: type=gha,mode=max
71-
platforms: linux/arm64,linux/amd64
71+
# platforms: linux/arm64,linux/amd64

0 commit comments

Comments
 (0)