Skip to content

Commit 15ffc99

Browse files
committed
remove build step from deploy workflow
1 parent 82d9c2c commit 15ffc99

2 files changed

Lines changed: 1 addition & 22 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,11 @@
88
name: Deploy
99

1010
on:
11-
push:
12-
branches:
13-
- main
14-
pull_request:
15-
branches:
16-
- main
1711
workflow_dispatch:
1812
inputs:
1913
command:
2014
type: choice
2115
options:
22-
- build # build only
2316
- publish # build & publish to pypi
2417
- release # build & release to svn
2518
default: build
@@ -28,20 +21,6 @@ permissions:
2821
contents: read
2922

3023
jobs:
31-
build:
32-
if: |
33-
github.event_name == 'pull_request' ||
34-
github.event_name == 'push' ||
35-
github.event_name == 'workflow_dispatch' && inputs.command == 'build'
36-
runs-on: fusionauth-builder
37-
steps:
38-
- name: checkout
39-
uses: actions/checkout@v4
40-
41-
- name: compile
42-
shell: bash -l {0}
43-
run: sb compile
44-
4524
deploy:
4625
if: |
4726
github.event_name == 'workflow_dispatch' &&

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Run locally with act:
22
#
33
# act pull_request \
4-
# --platform fusionauth-builder=752443094709.dkr.ecr.us-west-2.amazonaws.com/gha-runner-fusionauth-builder:latest \
4+
# --platform fusionauth-builder=[ecr-repo-name]/fusionauth-builder:latest] \
55
# --workflows ./.github/workflows/test.yaml
66

77
name: Test

0 commit comments

Comments
 (0)