dont care about branch name #4
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
env: | |
AWS_REGION: eu-central-1 | |
AWS_ROLE: FirewallFactoryGithubPipelineRole | |
AWS_ACCOUNT: 859220371210 | |
permissions: | |
id-token: write | |
contents: read | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
types: | |
- closed | |
- opened | |
- reopened | |
jobs: | |
deploy_production_main: | |
name: Test and deploy Firewalls | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'main' && github.event_name == 'push' | |
steps: | |
- name: 📦 Install Taskfile | |
run: | | |
npm install -g @go-task/cli | |
- name: 📦 Install Packages | |
run: | | |
npm install | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v3 | |
- name: 🔑 Configure AWS credentials | |
uses: aws-actions/[email protected] | |
env: | |
ACCOUNT_ID: ${{ env.AWS_ACCOUNT }} | |
with: | |
role-to-assume: arn:aws:iam::${{ env.ACCOUNT_ID }}:role/${{ env.AWS_ROLE }} | |
aws-region: ${{ env.AWS_REGION }} | |
role-session-name: GitHubActionsSession | |
mask-aws-account-id: false | |
- name: ✚ Deploy Firewall to AWS | |
run: | | |
task deploy config=onlyManagedRuleGroupsTests | |
- name: 🗑️ Remove Firewall from AWS | |
run: | | |
task destroy config=onlyManagedRuleGroupsTests |