| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- name: CI/CD
- on:
- push:
- paths-ignore:
- - "README.md"
- branches:
- - master
- jobs:
- build-docker:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - 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 DockerHub
- uses: docker/login-action@v1
- with:
- username: ${{ secrets.DOCKER_USERNAME }}
- password: ${{ secrets.DOCKER_PASSWORD }}
- - name: Build and push AMD64 Docker image
- uses: docker/build-push-action@v2
- with:
- context: .
- file: ./Dockerfile
- platforms: linux/amd64
- push: true
- tags: zedeus/nitter:latest,zedeus/nitter:${{ github.sha }}
- - name: Build and push ARM64 Docker image
- uses: docker/build-push-action@v2
- with:
- context: .
- file: ./Dockerfile.arm64
- platforms: linux/arm64
- push: true
- tags: zedeus/nitter:latest-arm64,zedeus/nitter:${{ github.sha }}-arm64
|