We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f29e8a commit 48a7168Copy full SHA for 48a7168
1 file changed
.github/workflows/notify.yaml
@@ -11,23 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - name: Check out the repository
15
- uses: actions/checkout@v4
16
-
17
- - name: Set up QEMU
18
- uses: docker/setup-qemu-action@v2
19
20
- - name: Set up Docker Buildx
21
- uses: docker/setup-buildx-action@v2
22
23
- name: Log in to Docker Hub
24
run: |
25
echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
26
27
- name: Build and push Docker image
28
29
- docker buildx build \
30
- --platform linux/amd64,linux/arm64 \
+ docker build \
31
--push \
32
-t ${{ secrets.DOCKERHUB_USERNAME }}/notify:latest \
33
-t ${{ secrets.DOCKERHUB_USERNAME }}/notify:$(date +%s) \
0 commit comments