-
-
Notifications
You must be signed in to change notification settings - Fork 106
55 lines (47 loc) · 1.43 KB
/
snapshot.yml
File metadata and controls
55 lines (47 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# 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
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/commandbox-action@v1.0.2
# 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:
WHEELS_DEV_PAT: ${{ secrets.WHEELS_DEV_PAT }}