update for Subnet Configuration Generator v1 release #29
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: Build and deploy devnet | |
on: | |
pull_request_target: | |
branches: | |
- master | |
jobs: | |
backend_build_and_deploy: | |
if: | | |
( startsWith(github.head_ref, 'feature') || | |
startsWith(github.head_ref, 'fix') ) | |
name: Test and deploy on backend PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@master | |
- name: check out trigger branch | |
run: | | |
git fetch origin $BRANCH | |
git checkout $BRANCH | |
env: | |
BRANCH: ${{ github.head_ref }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: cd backend && npm install | |
- name: Record branch env | |
id: branch | |
run: | | |
echo "repo=${{ github.repository }}" >> $GITHUB_OUTPUT | |
echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT | |
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
# echo $repo | |
# echo $branch | |
# echo $commit | |
- name: Docker login | |
env: | |
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | |
DOCKER_PASSWORD: ${{secrets.DOCKER_ACCESS_TOKEN}} | |
run: | | |
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin | |
- name: Determine Docker Image Name | |
id: image | |
run: | | |
echo "name=xinfinorg/subnet-stats-service:${{ steps.branch.outputs.branch }}" >> $GITHUB_OUTPUT | |
- name: Docker build and tag image | |
run: cd backend && docker build . --file Dockerfile --tag ${{ steps.image.outputs.name }} | |
- name: Docker push | |
run: docker push ${{ steps.image.outputs.name }} | |
frontend_build_and_deploy: | |
if: | | |
( startsWith(github.head_ref, 'feature') || | |
startsWith(github.head_ref, 'fix') ) | |
name: Test and deploy on frontend PR | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- name: check out code | |
uses: actions/checkout@master | |
- name: check out trigger branch | |
run: | | |
git fetch origin $BRANCH | |
git checkout $BRANCH | |
env: | |
BRANCH: ${{ github.head_ref }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Record branch env | |
id: branch | |
run: | | |
echo "repo=${{ github.repository }}" >> $GITHUB_OUTPUT | |
echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT | |
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
# echo $repo | |
# echo $branch | |
# echo $commit | |
- name: Docker login | |
env: | |
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}} | |
DOCKER_PASSWORD: ${{secrets.DOCKER_ACCESS_TOKEN}} | |
run: | | |
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin | |
- name: Determine Docker Image Name | |
id: image | |
run: | | |
echo "name=xinfinorg/subnet-frontend:${{ steps.branch.outputs.branch }}" >> $GITHUB_OUTPUT | |
- name: Docker build and tag image | |
run: docker build . --file Dockerfile --tag ${{ steps.image.outputs.name }} | |
- name: Test run docker | |
run: docker run --entrypoint /bin/sh ${{ steps.image.outputs.name }} -c 'yarn run build && yarn global add serve' | |
- name: Docker push | |
run: docker push ${{ steps.image.outputs.name }} | |
trigger_deploy_workflow: | |
name: Trigger deployment workflow | |
needs: [frontend_build_and_deploy, backend_build_and_deploy] | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@master | |
- name: check out trigger branch | |
run: | | |
git fetch origin $BRANCH | |
git checkout $BRANCH | |
env: | |
BRANCH: ${{ github.head_ref }} | |
- name: Record branch env | |
id: branch | |
run: | | |
echo "repo=${{ github.repository }}" >> $GITHUB_OUTPUT | |
echo "branch=$(git rev-parse --abbrev-ref HEAD)" >> $GITHUB_OUTPUT | |
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: trigger deploy workflow | |
id: trigger_deploy | |
run: | | |
echo "RESPONSE_CODE=$( \ | |
curl -L \ | |
-o response.txt \ | |
-w %{response_code} \ | |
-s \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.CICD_PAT }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/hash-laboratories-au/subnet-deployment/actions/workflows/subnet-deploy.yaml/dispatches \ | |
-d '{"ref":"master", "inputs":{"caller_repo": "${{ steps.branch.outputs.repo }}", "caller_ref": "${{ steps.branch.outputs.branch }}", "caller_sha": "${{ steps.branch.outputs.commit }}"}}' \ | |
)" >> $GITHUB_ENV | |
- name: Check response fail or success | |
run: | | |
cat response.txt | |
echo "RESPONSE_CODE=${{ env.RESPONSE_CODE }}" | |
if [ ${{ env.RESPONSE_CODE }} != 204 ] | |
then | |
exit 1 | |
fi |