forked from fkie/fivefilters-full-text-rss-docker
-
Notifications
You must be signed in to change notification settings - Fork 35
40 lines (32 loc) · 918 Bytes
/
build-and-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Docker build and push
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- 'docker-compose.yml'
schedule:
- cron: '0 13 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: latest
- name: Login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: build the image
run: |
docker buildx build --push \
--tag heussd/fivefilters-full-text-rss:latest \
--platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 .