-
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.
- Loading branch information
1 parent
45b5c22
commit ce3321f
Showing
13 changed files
with
36 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build image and deploy Prefect flow - Project 1 | ||
|
||
env: | ||
PROJECT_NAME: flows/aws | ||
|
||
on: | ||
push: | ||
paths: | ||
- "flows/aws/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy AWS flows | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
cache: "pip" | ||
|
||
- name: Filter Paths | ||
uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
# Changed file can be 'added', 'modified', or 'deleted'. | ||
# By default, the type of change is not considered. | ||
# Optionally, it's possible to specify it using nested | ||
# dictionary, where the type of change composes the key. | ||
# Multiple change types can be specified using `|` as the delimiter. | ||
filters: | | ||
addedOrModified: | ||
- added|modified: '**' | ||
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.