update-coder-template/.github/workflows/release.yaml
Muhammad Atif Ali 29c8e473b9 ci: use PAT
2023-06-07 14:26:31 +03:00

17 lines
350 B
YAML

name: Release
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: update coder template
run: gh release create ${{ github.ref }} -t ${{ github.ref_name }} --generate-notes -R ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.PAT }}