Skip to content

CI debugging

CI debugging #1

Workflow file for this run

name: Continuous Integration
on:
push:
pull_request:
branches:
- 'main'
workflow_dispatch:
permissions:
contents: write
packages: write
jobs:
build-framework:
runs-on: ubuntu-latest
container:
image: ghcr.io/tst-race/raceboat/raceboat-builder:${{ github.head_ref || github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: ./build.sh
- name: Create Build Artifact
run: "tar cvf ${{ github.event.repository.name }}.tar.gz -C /__w/raceboat/raceboat/racesdk/package/ ."
- name: Upload Build Artifact
uses: actions/upload-artifact@v3
with:
name: "${{ github.event.repository.name }}.tar.gz"
path: "${{ github.event.repository.name }}.tar.gz"
retention-days: 10
needs: [builder-image]

Check failure on line 35 in .github/workflows/build-framework.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/build-framework.yml (Line: 35, Col: 9): Unexpected value 'needs'