Skip to content

👷 change steps for needs output #2

👷 change steps for needs output

👷 change steps for needs output #2

Workflow file for this run

name: Staging Build
#on: pull_request
on:
push:
branches:
- main
jobs:
check-changes:
name: Check for changes
runs-on: ubuntu-latest
outputs:
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get changed files in the packages/ml folder
id: changed-files
uses: tj-actions/changed-files@v40
with:
files: packages/ml/**/*
build:
name: Build + Push Image
needs: check-changes
if: needs.check-changes.outputs.any_changed == 'true'
uses: ./.github/workflows/build-push.yml
with:
CONTEXT: ./packages/ml
TARGET: prod
secrets:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 34 in .github/workflows/staging.yml

View workflow run for this annotation

GitHub Actions / Staging Build

Invalid workflow file

The workflow is not valid. .github/workflows/staging.yml (Line: 34, Col: 21): Invalid secret, GITHUB_TOKEN is not defined in the referenced workflow.