From 60c13b004c4c2754eff0ff112849777224edc69a Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Mon, 21 Oct 2024 12:21:55 -0400 Subject: [PATCH] rename file --- .github/workflows/main.yaml | 10 +++++----- delegate-template.yaml => stacksets-template.yaml | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename delegate-template.yaml => stacksets-template.yaml (100%) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index fad12de..2bd9845 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -61,11 +61,11 @@ jobs: shell: bash run: | sam package \ - --template delegate-template.yaml \ + --template stacksets-template.yaml \ --s3-bucket aws-sam-cli-sourcebucket-346402060170-us-east-1 \ --s3-prefix ${{ env.GITHUB_REPOSITORY_OWNER_PART_SLUG_URL }}/${{ env.GITHUB_REPOSITORY_NAME_PART_SLUG_URL }}/${{ env.GITHUB_REF_SLUG_URL }} \ --region us-east-1 \ - --output-template-file packaged-delegate-template.yaml + --output-template-file packaged-stacksets-template.yaml - name: Store Artifacts uses: ServerlessOpsIO/gha-store-artifacts@v1 @@ -104,7 +104,7 @@ jobs: env_json: ${{ toJson(env) }} secrets_json: ${{ toJson(secrets) }} - deploy_delegate: + deploy_stacksets: needs: - build runs-on: ubuntu-latest @@ -118,7 +118,7 @@ jobs: with: checkout_artifact: true - - name: Setup Python enviornment + - name: Setup Python environment uses: ServerlessOpsIO/gha-setup-python@v1 with: python_version: 3.12 @@ -135,7 +135,7 @@ jobs: uses: ServerlessOpsIO/gha-deploy-aws-sam@v1 with: aws_account_id: ${{ secrets.AWS_STACKSETS_ACCOUNT_ID }} - template_file: packaged-delegate-template.yaml + template_file: packaged-stacksets-template.yaml cfn_capabilities: CAPABILITY_NAMED_IAM,CAPABILITY_AUTO_EXPAND env_json: ${{ toJson(env) }} secrets_json: ${{ toJson(secrets) }} diff --git a/delegate-template.yaml b/stacksets-template.yaml similarity index 100% rename from delegate-template.yaml rename to stacksets-template.yaml