fix: update name of function deploying Helm #144
Workflow file for this run
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
# Source: https://docs.cloudposse.com/layers/spacelift/#main-branch | |
name: Deploy Affected Spacelift Stacks | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- master | |
jobs: | |
run: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Atmos Affected Stacks Trigger Spacelift | |
uses: cloudposse/github-action-atmos-affected-trigger-spacelift@v2 | |
with: | |
atmos-config-path: ./rootfs/usr/local/etc/atmos | |
deploy: true | |
github-token: ${{ secrets.PUSH_TOKEN }} | |
head-ref: ${{ github.sha }}~1 |