File: release-note.yml

package info (click to toggle)
snappy-java 1.1.10.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,300 kB
  • sloc: java: 5,747; sh: 2,506; xml: 431; cpp: 295; makefile: 203
file content (18 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Release Note

on:
  push:
    tags:
      - v*
  workflow_dispatch:      

jobs:
  release:
    name: Create a new release note
    runs-on: ubuntu-latest
    steps:         
      - name: Create a release note
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          gh release create "$GITHUB_REF_NAME" --repo="$GITHUB_REPOSITORY" --generate-notes