-
Notifications
You must be signed in to change notification settings - Fork 5
38 lines (36 loc) · 1.19 KB
/
ci-main.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
name: CI main
on:
workflow_dispatch:
branches:
- main
inputs:
version:
type: string
description: Release version
required: true
jobs:
build:
if: github.actor == 'harisato'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set environment variable
run: |
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/multisig-api:${{ inputs.version }} >> $GITHUB_ENV
echo REPO_MANIFEST_NAME=gitops-prod >> $GITHUB_ENV
echo REPO_MANIFEST_URL=github.com/aura-nw/gitops-prod.git >> $GITHUB_ENV
echo REPO_MANIFEST_BRANCH=main >> $GITHUB_ENV
echo REPO_MANIFEST_ENV_MAIN=./clusters/k8s-xstaxy/multisig-safe >> $GITHUB_ENV
echo REPO_MANIFEST_TAG_IMAGE=image_multisig_api >> $GITHUB_ENV
- name: Build the Docker image and push it to the registry
env:
GITHUB_USERNAME: ${{ github.actor }}
GITHUB_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: |
chmod 777 -R ./ci
./ci/build.sh
- name: Update manifest
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.REGISTRY_PASSWORD }}
run: |
./ci/updateManifest.sh