mirror of https://github.com/PurpleI2P/i2pd.git
R4SAS
3 years ago
committed by
GitHub
2 changed files with 15 additions and 7 deletions
@ -1,29 +1,36 @@ |
|||||||
name: Build Docker containers |
name: Build containers |
||||||
|
|
||||||
on: push |
on: push |
||||||
|
|
||||||
jobs: |
jobs: |
||||||
docker: |
docker: |
||||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||||
|
permissions: |
||||||
|
packages: write |
||||||
|
contents: read |
||||||
|
|
||||||
steps: |
steps: |
||||||
- name: Checkout |
- name: Checkout |
||||||
uses: actions/checkout@v2 |
uses: actions/checkout@v2 |
||||||
|
|
||||||
- name: Set up QEMU |
- name: Set up QEMU |
||||||
uses: docker/setup-qemu-action@v1 |
uses: docker/setup-qemu-action@v1 |
||||||
|
|
||||||
- name: Set up Docker Buildx |
- name: Set up Docker Buildx |
||||||
uses: docker/setup-buildx-action@v1 |
uses: docker/setup-buildx-action@v1 |
||||||
|
|
||||||
- name: Login to DockerHub |
- name: Login to DockerHub |
||||||
uses: docker/login-action@v1 |
uses: docker/login-action@v1 |
||||||
with: |
with: |
||||||
registry: ghcr.io |
registry: ghcr.io |
||||||
username: ${{ github.repository_owner }} |
username: ${{ github.actor }} |
||||||
password: ${{ secrets.GITHUB_TOKEN }} |
password: ${{ secrets.GITHUB_TOKEN }} |
||||||
|
|
||||||
- name: Build and push |
- name: Build and push |
||||||
uses: docker/build-push-action@v2 |
uses: docker/build-push-action@v2 |
||||||
with: |
with: |
||||||
file: contrib/docker/Dockerfile |
context: ./contrib/docker |
||||||
# platforms: linux/amd64,linux/386,linux/arm/v7,linux/arm64,linux/ppc64le |
file: ./contrib/docker/Dockerfile |
||||||
platforms: linux/amd64 |
platforms: linux/amd64,linux/386 |
||||||
push: true |
push: true |
||||||
no-cache: true |
|
||||||
tags: ghcr.io/purplei2p/i2pd:latest |
tags: ghcr.io/purplei2p/i2pd:latest |
||||||
|
Loading…
Reference in new issue