-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
standard workflow ci, put actionforge in stasis ftm
- Loading branch information
1 parent
3920ed6
commit b012894
Showing
1 changed file
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
on: [push] | ||
# on: [push] | ||
|
||
# jobs: | ||
# build-and-publish: | ||
# runs-on: ubuntu-latest | ||
# name: My workflow | ||
# steps: | ||
# - name: Execute Action Graph | ||
# uses: actionforge/action@b350d491aef4ae17ac4f5270a2fc5186be0f39db # v0.9.42 | ||
# with: | ||
# graph_file: workflow-ci.yml | ||
on: push | ||
|
||
jobs: | ||
build-and-publish: | ||
runs-on: ubuntu-latest | ||
name: My workflow | ||
steps: | ||
- name: Execute Action Graph | ||
uses: actionforge/action@b350d491aef4ae17ac4f5270a2fc5186be0f39db # v0.9.42 | ||
with: | ||
graph_file: workflow-ci.yml | ||
build-and-publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Scan code for secrets | ||
uses: trufflesecurity/trufflehog@main | ||
with: | ||
path: ./ | ||
|
||
- name: Build | ||
run: | | ||
poetry install | ||
poetry build |