Skip to content

ci: upload release artifacts #10

ci: upload release artifacts

ci: upload release artifacts #10

Workflow file for this run

name: Release artifacts

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

View workflow run for this annotation

GitHub Actions / .github/workflows/on-release.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: env
on:
push:
branches: ["ci/release-artifacts"]
pull_request:
branches: ["ci/release-artifacts"]
jobs:
env:
RELEASE_TAG: "foo"
build_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: build
# run: make build
- name: Create artifacts folder
run: mkdir artifacts
- name: Create artifacts for linux
run: sh ci/script.sh
env:
TARGET: x86_64-unknown-linux-gnu
- name: Create artifacts for darwin
run: sh ci/script.sh
env:
TARGET: x86_64-apple-darwin
- name: LS files
run: ls && ls target