Skip to content

0.8.2.36

0.8.2.36 #4

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Exit if not on main branch
if: endsWith(github.ref, 'main') == false
run: exit -1
- name: Hello world
run: echo "Hello world"