Skip to content

release

release #3

Workflow file for this run

on:
push:
tags: [ "v*" ]
name: release
jobs:
build:
steps:

Check failure on line 10 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 10, Col: 5): Required property is missing: runs-on
- name: checkout
uses: actions/checkout@v3
- name: build release
run: bazel build //:release
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
run: >-
gh release create ${{ github.ref_name }}
"bazel-bin/iso14229.zip#"
--generate-notes
--title "Version ${{ github.ref_name }} (or some other name)"