All checks were successful
Build and Push Version Check Action / build (push) Successful in 17s
16 lines
408 B
YAML
16 lines
408 B
YAML
name: Version Check & Tag
|
|
description: Ensures version correctness and creates missing git tags
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Set up Deno
|
|
uses: denoland/setup-deno@v1
|
|
with:
|
|
deno-version: 2.3.1
|
|
|
|
- name: Run version check
|
|
shell: bash
|
|
run: |
|
|
deno run --allow-read --allow-run version-check/main.ts
|
|
working-directory: ${{ github.action_path }}
|