Skip to content

Merge pull request #1851 from wheels-dev/fix/wheels-cli-fixes #1133

Merge pull request #1851 from wheels-dev/fix/wheels-cli-fixes

Merge pull request #1851 from wheels-dev/fix/wheels-cli-fixes #1133

Workflow file for this run

# This workflow tests the CFWheels code using many permutations in the matrix.
# If successful, then it creates the bleeding edge artifact and publishes it to ForgeBox
name: Wheels Snapshots
on:
push:
branches:
- develop
env:
WHEELS_PRERELEASE: true
jobs:
tests:
uses: ./.github/workflows/tests.yml

Check warning on line 15 in .github/workflows/snapshot.yml

View workflow run for this annotation

GitHub Actions / Wheels Snapshots

Workflow syntax warning

In .github/workflows/snapshot.yml (Line: 15, Col: 11): Error from called workflow wheels-dev/wheels/.github/workflows/tests.yml@843805dad3003e2d2e3732531e4ec2705c915acc (Line: 137, Col: 13): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# cfformat:
# runs-on: ubuntu-latest
# needs: tests
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v3
#
# - uses: Ortus-Solutions/[email protected]
# with:
# cmd: run-script format
#
# - name: Commit Format Changes
# uses: stefanzweifel/git-auto-commit-action@v4
# with:
# commit_message: Apply CFFormat changes
#############################################
# Build Snapshot Release
#############################################
build:
needs: tests
uses: ./.github/workflows/release.yml
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
FORGEBOX_API_TOKEN: ${{ secrets.FORGEBOX_API_TOKEN }}
FORGEBOX_PASS: ${{ secrets.FORGEBOX_PASS }}
#############################################
# Sync Docs in Wheels.dev
#############################################
sync-docs:
needs: build
uses: ./.github/workflows/docs-sync.yml
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }}