Skip to content

Commit

Permalink
Adding deploy workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Feb 2, 2024
1 parent f89932f commit 4f46a02
Show file tree
Hide file tree
Showing 2 changed files with 172 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ NODE_VERSION=16.x
PROGRAMS=["mpl-inscription"]
RUST_VERSION=1.70.0
SOLANA_VERSION=1.16.18
COMMIT_USER_NAME=github-actions
COMMIT_USER_EMAIL=github-actions@github.com
170 changes: 170 additions & 0 deletions .github/workflows/deploy-programs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
name: Deploy Program

on:
workflow_dispatch:
inputs:
program:
description: Program
required: true
default: vault
type: choice
options:
- vault
cluster:
description: Cluster environment
required: true
default: devnet
type: choice
options:
- devnet
- mainnet-beta
version_program:
description: Version program
required: true
default: false
type: boolean
level:
description: Level
required: true
default: patch
type: choice
options:
- patch
- minor
- major

env:
CACHE: true

jobs:
build_programs:
name: Programs
uses: ./.github/workflows/build-programs.yml
secrets: inherit

test_programs:
name: Programs
uses: ./.github/workflows/test-programs.yml
secrets: inherit
with:
program_matrix: '["${{ inputs.program }}"]'

test_js:
name: JS client
needs: build_programs
uses: ./.github/workflows/test-js-client.yml
secrets: inherit

test_rust:
name: Rust client
needs: build_programs
uses: ./.github/workflows/test-rust-client.yml
secrets: inherit

deploy_program:
name: Program / Deploy
runs-on: ubuntu-latest-16-cores
needs: [test_programs, test_js, test_rust]
permissions:
contents: write
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.SVC_TOKEN }}

- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV

- name: Install Rust
uses: metaplex-foundation/actions/install-rust@v1
with:
toolchain: ${{ env.RUST_VERSION }}

- name: Install Solana
uses: metaplex-foundation/actions/install-solana@v1
with:
version: ${{ env.SOLANA_VERSION }}
cache: ${{ env.CACHE }}

- name: Install cargo-release
uses: metaplex-foundation/actions/install-cargo-release@v1
if: github.event.inputs.publish_crate == 'true'
with:
cache: ${{ env.CACHE }}

- name: Set RPC
run: |
if [ "${{ inputs.cluster }}" == "devnet" ]; then
echo RPC=${{ secrets.DEVNET_RPC }} >> $GITHUB_ENV
else
echo RPC=${{ secrets.MAINNET_RPC }} >> $GITHUB_ENV
fi
- name: Determine program version
run: |
IDL_NAME="${{ inputs.program }}_program"
VERSION=`jq '.version' ./idls/${IDL_NAME}.json | sed 's/"//g'`
MAJOR=`echo ${VERSION} | cut -d. -f1`
MINOR=`echo ${VERSION} | cut -d. -f2`
PATCH=`echo ${VERSION} | cut -d. -f3`
if [ "${{ inputs.level }}" == "major" ]; then
MAJOR=$((MAJOR + 1))E
MINOR=0
PATCH=0
elif [ "${{ inputs.level }}" == "minor" ]; then
MINOR=$((MINOR + 1))
PATCH=0
else
PATCH=$((PATCH + 1))
fi
PROGRAM_VERSION="${MAJOR}.${MINOR}.${PATCH}"
cp ./idls/${IDL_NAME}.json ./idls/${IDL_NAME}-previous.json
jq ".version = \"${PROGRAM_VERSION}\"" ./idls/${IDL_NAME}-previous.json > ./idls/${IDL_NAME}.json
rm ./idls/${IDL_NAME}-previous.json
echo PROGRAM_VERSION="${PROGRAM_VERSION}" >> $GITHUB_ENV
- name: Download program builds
uses: actions/download-artifact@v3
with:
name: program-builds

- name: Deploy Program
run: |
echo "Deploying ${{ inputs.program }} to ${{ inputs.cluster }}"
echo ${{ secrets.INSCRIPTION_DEPLOYER_KEY }} > ./deployer-key.json
echo ${{ secrets.INSCRIPTION_ID }} > ./program-id.json
solana -v program deploy ./programs/.bin/${{ inputs.program }}_program.so \
-u ${{ env.RPC }} \
--program-id ./program-id.json \
-k ./deployer-key.json
rm ./deployer-key.json
rm ./program-id.json
- name: Version program
working-directory: ./programs/${{ inputs.program }}/program
if: github.event.inputs.version_program == 'true'
run: |
git stash
git config user.name "${{ env.COMMIT_USER_NAME }}"
git config user.email "${{ env.COMMIT_USER_EMAIL }}"
cargo login ${{ secrets.CRATES_TOKEN }}
cargo release ${{ env.PROGRAM_VERSION }} --no-confirm --no-push --no-tag --no-publish --execute
git reset --soft HEAD~1
git stash pop
- name: Commit and tag new version
uses: stefanzweifel/git-auto-commit-action@v4
if: github.event.inputs.version_program == 'true' && github.event.inputs.cluster == 'mainnet-beta'
with:
commit_message: Deploy mpl-${{ inputs.program }} program v${{ env.PROGRAM_VERSION }}
tagging_message: mpl-${{ inputs.program }}@v${{ env.PROGRAM_VERSION }}

0 comments on commit 4f46a02

Please sign in to comment.