-
Notifications
You must be signed in to change notification settings - Fork 2
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
71e5762
commit 78e9aab
Showing
1 changed file
with
77 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,77 @@ | ||
name: Preview or update Pulumi app nf-core/github-repos/prod | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "pulumi/github/repos/**/*" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- "pulumi/github/repos/**/*" | ||
|
||
# These are the environment variables that jobs in the workflow have access to. | ||
# By defining them here, all jobs/steps will have access to these variables. | ||
env: | ||
# IMPORTANT! You must map the env vars for your cloud provider here even though you add them as secrets | ||
# to this repository. | ||
# See the setup page for cloud providers here: https://www.pulumi.com/docs/intro/cloud-providers/. | ||
# For example, if you are using AWS, then you should add the following: | ||
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | ||
PULUMI_STACK_NAME: nf-core/github-repos/prod | ||
PULUMI_WORKING_DIRECTORY: pulumi/github/repos/ | ||
|
||
jobs: | ||
pulumi: | ||
name: Pulumi | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Turnstyle is used to prevent multiple push jobs from running at the same time. We | ||
# limit it to push jobs to allow PR jobs to run concurrently. | ||
- name: Turnstyle | ||
if: ${{ github.event_name == 'push' }} | ||
uses: softprops/turnstyle@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.6.x | ||
|
||
- run: pip install -r requirements.txt | ||
working-directory: ${{ env.PULUMI_WORKING_DIRECTORY }} | ||
|
||
- name: PR previews | ||
if: ${{ github.event_name == 'pull_request' }} | ||
uses: pulumi/actions@v3 | ||
with: | ||
command: preview | ||
stack-name: ${{ env.PULUMI_STACK_NAME }} | ||
work-dir: ${{ env.PULUMI_WORKING_DIRECTORY }} | ||
|
||
- name: Apply infrastructure update | ||
if: ${{ github.event_name == 'push' }} | ||
uses: pulumi/actions@v3 | ||
with: | ||
command: up | ||
stack-name: ${{ env.PULUMI_STACK_NAME }} | ||
work-dir: ${{ env.PULUMI_WORKING_DIRECTORY }} | ||
|
||
# If you'd like to run your Pulumi application outside of the official GitHub Action | ||
|
||
#- name: Install Pulumi CLI | ||
# uses: pulumi/setup-pulumi@v2 | ||
|
||
#- name: PR previews | ||
# run: pulumi preview -s $PULUMI_STACK_NAME --cwd $PULUMI_WORKING_DIRECTORY | ||
# if: ${{ github.event_name == 'pull_request' }} | ||
|
||
#- name: Apply infrastructure update | ||
# run: pulumi update --yes -s $PULUMI_STACK_NAME --cwd $PULUMI_WORKING_DIRECTORY | ||
# if: ${{ github.event_name == 'push' }} |