Skip to content

fix release on push on branch except main #6

fix release on push on branch except main

fix release on push on branch except main #6

Workflow file for this run

name: Vanilla-javascript-typesystem build and Release
on:
push:
branches:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Run release script
run: ./.github/scripts/release.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
shell: bash