Per-Arne Andersen
4 years ago
3 changed files with 67 additions and 15 deletions
@ -0,0 +1,25 @@ |
|||
name: build wg-dashboard |
|||
|
|||
on: |
|||
push: |
|||
branches: |
|||
- master |
|||
|
|||
jobs: |
|||
build: |
|||
runs-on: ubuntu-latest |
|||
steps: |
|||
- name: checkout code |
|||
uses: actions/checkout@v2 |
|||
- name: install buildx |
|||
id: buildx |
|||
uses: crazy-max/ghaction-docker-buildx@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 perara/wg-manager:latest \ |
|||
--platform linux/amd64,linux/arm64/v8,linux/arm64,linux/arm/v7,linux/arm/v6 . |
Loading…
Reference in new issue