Skip to content

Update workflow and move everything into building with the dockerfile… #69

Update workflow and move everything into building with the dockerfile…

Update workflow and move everything into building with the dockerfile… #69

name: Go
on: ["push"]
jobs:
test:
runs-on: ubuntu-latest
steps:

Check failure on line 8 in .github/workflows/test_and_deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_and_deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
- uses: actions/checkout@v3
with:
fetch-depth: 0
- 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 ./...
deploy:
runs-on: ubuntu-latest
needs: test
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
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 }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: wagvpn/wag:latest