Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
workflow_dispatch:
env:
GO_VERSION: "1.18"
jobs:
tests:
name: Run Tests
runs-on: ubuntu-20.04
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: make build
- name: Run Unit tests
run: |
make test
- name: Run Integration Tests
run: make test-integration
- name: Run Tunnel vulnerability scanner in repo mode
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
ignore-unfixed: true
format: 'sarif'
severity: 'CRITICAL'
exit-code: 0
- name: Run Tunnel vulnerability scanner against Khulnasoft Cloud
uses: aquasecurity/[email protected]
with:
scan-type: 'fs'
hide-progress: true
format: 'table'
security-checks: 'vuln,config'
release:
name: Release
needs:
- tests
runs-on: ubuntu-20.04
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Release
uses: goreleaser/goreleaser-action@v4
with:
version: ~> 0.180
args: release --rm-dist
workdir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Log out from docker.io
if: ${{ always() }}
run: |
docker logout docker.io