Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

New Version

New Version #17

Workflow file for this run

name: New Version
on:
push:
tags:
- 'v*'
jobs:
socket:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Build Sockets
uses: goreleaser/goreleaser-action@v5
with:
version: v1.23.0
args: release --rm-dist --debug --skip-validate
workdir: ${{ github.workspace }}/agent/mitm-socket
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}