-
Notifications
You must be signed in to change notification settings - Fork 1
80 lines (69 loc) · 2.59 KB
/
gitops-prd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: GitOps for production
on:
push:
tags:
- v*
jobs:
gitops:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Checkout dreamkast-infra
uses: actions/checkout@v4
with:
repository: cloudnativedaysjp/dreamkast-infra
path: dreamkast-infra
token: ${{ steps.generate_token.outputs.token }}
- name: Update Kubernetes resources
working-directory: dreamkast-infra/manifests/app/dreamkast/overlays/production/main
run: |
kustomize edit set image dreamkast-weaver=${{ steps.login-ecr.outputs.registry }}/dreamkast-weaver:${{ github.sha }}
- name: Commit files
working-directory: dreamkast-infra/
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git status
git add -A
git commit -am "Bump docker tag (${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/commit/${GITHUB_SHA})"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ steps.generate_token.outputs.token }}
repository: cloudnativedaysjp/dreamkast-infra
directory: dreamkast-infra
branch: production/weaver-main
- name: Create and Merge Pull Request
uses: "actions/github-script@v6"
with:
github-token: ${{ steps.generate_token.outputs.token }}
script: |
const pr = await github.rest.pulls.create({
owner: "cloudnativedaysjp",
repo: "dreamkast-infra",
title: "Automated PR (production/weaver-main)",
body: "**this PR is automatically created & merged**",
head: "production/weaver-main",
base: "main"
});
await github.rest.pulls.merge({
owner: "cloudnativedaysjp",
repo: "dreamkast-infra",
pull_number: pr.data.number,
merge_method: "squash",
});