removed test workflow

This commit is contained in:
Felipe M 2022-08-10 16:37:15 +02:00
parent 8f6c28bbd9
commit 9dedf501b5
Signed by: fmartingr
GPG Key ID: 716BC147715E716F
2 changed files with 1 additions and 43 deletions

View File

@ -28,7 +28,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./dist/*

View File

@ -1,42 +0,0 @@
name: "Test workflow"
on:
pull_request:
branches:
- latest
permissions:
contents: write # Required to upload dist files
concurrency:
group: ci-tests-${{ github.ref }}-1
cancel-in-progress: true
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: build --rm-dist --snapshot
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./dist/
docker-buildx:
needs: goreleaser
uses: ./.github/workflows/_docker-buildx.yml