1.13.1 #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check on release | |
on: | |
release: | |
types: [created] | |
jobs: | |
check-on-release: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
- name: check version match | |
run: deno task version-match | |
env: | |
RELEASE_TAG: ${{ github.event.release.tag_name }} |