-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This bumps the version to 1.8.2 and fixes #174.
- Loading branch information
1 parent
02c3c4b
commit b841621
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
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 }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const VERSION = "1.8.0"; | ||
export const VERSION = "1.8.2"; | ||
|
||
export const MINIMUM_DENO_VERSION = "1.28.3"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright 2023 Deno Land Inc. All rights reserved. MIT license. | ||
|
||
// This script ensures that version specifier defined in `src/version.ts` | ||
// matches the released tag version. | ||
// Intended to run when a draft release is created on GitHub. | ||
|
||
import { VERSION } from "../src/version.ts"; | ||
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts"; | ||
|
||
const releaseTagVersion = Deno.env.get("RELEASE_TAG")!; | ||
assertEquals(VERSION, releaseTagVersion); |