Skip to content

make-release

make-release #3

Workflow file for this run

name: make-release
on:
push:
tags:
- "v*.*.*"
jobs:
call-build-windows:
uses: ./.github/workflows/build-windows.yml
call-build_linux:
uses: ./.github/workflows/build-linux.yml
upload-artifacts-to-release:
runs-on: ubuntu-latest
needs: [call-build-windows, call-build-linux]

Check failure on line 16 in .github/workflows/make-release.yml

View workflow run for this annotation

GitHub Actions / make-release

Invalid workflow file

The workflow is not valid. .github/workflows/make-release.yml (Line: 16, Col: 33): Job 'upload-artifacts-to-release' depends on unknown job 'call-build-linux'.
steps:
- name: simple echo
run: hello
# TODO
# make release from tag
# download artifact
# push artifact to release
# modify other actions to take the tag version OR sha depending on caller