forked from akash-network/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(release): implement api deploy to akash
refs akash-network#345
- Loading branch information
1 parent
498df40
commit 12d90cc
Showing
4 changed files
with
122 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
name: Deploy Beta API to Akash | ||
|
||
on: | ||
push: | ||
tags: | ||
- console-api/v[0-9]+\.[0-9]+\.[0-9]+-beta\.[0-9]+ | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
|
||
env: | ||
ORG: akash-network | ||
REPO: provider | ||
CLIENT: provider-services | ||
CLIENT_VERSION: 0.6.4 | ||
ARCH: linux_amd64 | ||
NET: mainnet | ||
BLOCK_TIME: 1s | ||
CHAIN_LATENCY: 30 | ||
AKASH_KEYRING_BACKEND: file | ||
AKASH_BROADCAST_MODE: block | ||
AKASH_YES: 1 | ||
AKASH_GAS_PRICES: 0.025uakt | ||
AKASH_GAS: auto | ||
AKASH_GAS_ADJUSTMENT: 1.5 | ||
AKASH_HOME: /home/runner/.akash | ||
AKASH_FROM: default | ||
AKASH_OUTPUT: json | ||
MIN_BALANCE: 10 | ||
AKASH_GSEQ: 1 | ||
AKASH_OSEQ: 1 | ||
SDL: deploy.yaml | ||
PARSED_SDL: ${{ github.workspace }}/${{ github.event.inputs.project-path }}/deploy-parsed.yaml | ||
PROVIDER: ${{ secrets.AKASH_PROVIDER }} | ||
AKASH_PROVIDER: ${{secrets.AKASH_PROVIDER}} | ||
|
||
SQL_PROXY_AUTH_TOKEN: ${{secrets.SQL_PROXY_AUTH_TOKEN}} | ||
|
||
jobs: | ||
define-vars: | ||
name: Define Variables | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
app: ${{ steps.vars.outputs.app }} | ||
image: ${{ steps.vars.outputs.image }} | ||
|
||
steps: | ||
- name: Define common variables | ||
id: vars | ||
run: | | ||
ref="${{ github.event.ref }}" | ||
tag="${ref#refs/tags/}" | ||
prerelease_type=$(echo "$tag" | sed -n 's/.*-\([a-zA-Z]*\).*/\1/p') | ||
app="api-${prerelease_type:-prod}" | ||
version="${tag#console-api/v}" | ||
image="${{ vars.API_REGISTRY }}:$version" | ||
echo "app=${app}" | ||
echo "image=${image}" | ||
echo "app=${app}" >> $GITHUB_OUTPUT | ||
echo "image=${image}" >> $GITHUB_OUTPUT | ||
|
||
deploy-sandbox: | ||
name: Deploy Sandbox | ||
needs: define-vars | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Deploy | ||
uses: akash-network/akash-deploy-action/.github/actions/deploy@action | ||
env: | ||
DOPPLER_TOKEN: ${{ secrets.DOPPLER_API_STAGING_SANDBOX_TOKEN }} | ||
API_DOMAIN: ${{ vars.API_SANDBOX_STAGING_DOMAIN }} | ||
AKASH_DSEQ: ${{ secrets.API_BETA_SANDBOX_AKASH_DSEQ }} | ||
with: | ||
project-path: apps/api | ||
project-name: ${{ needs.define-vars.outputs.app }}-sandbox | ||
image: ${{ needs.define-vars.outputs.image }} | ||
seed: ${{ secrets.WALLET_MNEMONIC }} | ||
password: ${{ secrets.WALLET_PASSWORD }} | ||
|
||
deploy-mainnet: | ||
name: Deploy Mainnet | ||
needs: [define-vars, deploy-sandbox] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Deploy | ||
uses: akash-network/akash-deploy-action/.github/actions/deploy@action | ||
env: | ||
DOPPLER_TOKEN: ${{ secrets.DOPPLER_API_STAGING_MAINNET_TOKEN }} | ||
API_DOMAIN: ${{ vars.API_MAINNET_STAGING_DOMAIN }} | ||
AKASH_DSEQ: ${{ secrets.API_BETA_MAINNET_AKASH_DSEQ }} | ||
with: | ||
project-path: apps/api | ||
project-name: ${{ needs.define-vars.outputs.app }}-mainnet | ||
image: ${{ needs.define-vars.outputs.image }} | ||
password: ${{ secrets.WALLET_PASSWORD }} | ||
seed: ${{ secrets.WALLET_MNEMONIC }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,8 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
@@ -44,9 +45,9 @@ jobs: | |
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build the Docker images | ||
- name: Generate releases and build docker images | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.AKASH_GITHUB_TOKEN }} | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI" | ||
|
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
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