Skip to content

feat: upgrade

feat: upgrade #17

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
permissions:
contents: write # for release-drafter/release-drafter to create a github release
pull-requests: write # for release-drafter/release-drafter to add label to PR
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# - name: Release Drafter
# You may pin to the exact commit or the version.
# uses: release-drafter/release-drafter@e9ee02fbac03d922bac6212003695e8358dd88b0
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GTOKEN }}