Skip to content

0.8.2.38

0.8.2.38 #2

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"