Skip to content

fix: point to correct token secret #7

fix: point to correct token secret

fix: point to correct token secret #7

Workflow file for this run

name: Build and Release
on:
push:
tags:
- "v*.*.*"
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Up
uses: actions/setup-go@v4
with:
go-version: 1.22
- name: Build
run: go build -o bin/tt
id: build
- name: Release
uses: softprops/action-gh-release@v1
id: create_release
with:
draft: true
prerelease: false
tag_name: ${{ github.ref_name }}
files: |
bin/tt
env:
GITHUB_TOKEN: ${{ secrets.MY_PAT }}