Skip to content

test

test #12

Workflow file for this run

name: Test workflow
on: workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get the latest version
shell: bash
id: version
run: |
echo "version=$(./scripts/parse-tag.sh "@quoll/[email protected]")" >> "$GITHUB_ENV"
- name: Use the value
run: |
printf '%s\n' "THE VERSION IS: $version"