Skip to content

CI

CI #11326

Workflow file for this run

name: CI
on:
schedule:
- cron: "0 3 * * *"
push:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: short
TERM: xterm-256color
BINARYEN_VERSION: version_111
jobs:
check:
uses: ./.github/workflows/check.yml
#build:
# uses: ./.github/workflows/build.yml
# with:
# macos: true
# win-native: true
# release: true
# production: true
upload:
if: github.event_name == 'push' && github.ref_name == 'master'
runs-on: ubuntu-latest
needs: build

Check failure on line 35 in .github/workflows/CI.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yaml (Line: 35, Col: 12): Job 'upload' depends on unknown job 'build'.
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Delete previous release
uses: dev-drprasad/[email protected]
with:
delete_release: true
tag_name: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Sleep
run: sleep 10
- name: Upload
uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
tag_name: build
draft: false
fail_on_unmatched_files: true
files: artifact/*