Skip to content

Commit

Permalink
Fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Sep 4, 2023
1 parent ba1f13e commit 142c4b2
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"

- name: Test with the Go CLI
run: sudo go test -v ./...
Expand All @@ -31,20 +31,20 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: 'arm64,arm'
with:
platforms: "arm64,arm"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: wagvpn
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
uses: docker/login-action@v2
with:
username: wagvpn
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: wagvpn/wag:latest
uses: docker/build-push-action@v3
with:
push: true
tags: wagvpn/wag:latest

0 comments on commit 142c4b2

Please sign in to comment.