Merge pull request #792 from shogo82148/dependabot/go_modules/provide… #565
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
name: deploy to production | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
statuses: write | |
contents: read | |
environment: production | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
cache: true | |
go-version-file: provider/github-app-token/go.mod | |
cache-dependency-path: provider/github-app-token/go.sum | |
- name: build | |
run: | | |
make build | |
working-directory: provider | |
- uses: fuller-inc/actions-aws-assume-role@ab8b68ccaa6a83d843cd6f9403fc3c0eb2e3af0c # v1.7.1 | |
with: | |
aws-region: us-east-1 | |
role-to-assume: arn:aws:iam::978218332026:role/github-app-token-github-actions-us-east-1 | |
role-session-tagging: true | |
use-node-id: true | |
- name: deploy | |
run: | | |
make deploy | |
working-directory: provider | |
env: | |
APP_ENV: production |