Add recursive delegation for nft-style voting schems #11
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: '/canary-release' | |
on: | |
issue_comment: | |
types: [ created ] | |
env: | |
SOLANA_CLI_VERSION: 1.16.13 | |
NODE_VERSION: 18.12.1 | |
permissions: | |
contents: read # for checkout | |
pull-requests: write # for comments | |
packages: write # for publish | |
jobs: | |
canary-release: | |
name: canary-release | |
runs-on: ubuntu-latest | |
if: | | |
github.event_name == 'issue_comment' && | |
(github.event.comment.author_association == 'COLLABORATOR' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'CONTRIBUTOR') && | |
startsWith(github.event.comment.body, '/canary-release') | |
steps: | |
- name: get pr information | |
uses: actions/github-script@v4 | |
id: pr | |
with: | |
script: | | |
const request = { | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
pull_number: context.issue.number | |
} | |
core.info(`Getting PR #${request.pull_number} from ${request.owner}/${request.repo}`) | |
try { | |
const result = await github.pulls.get(request) | |
core.info(`Got PR: ${JSON.stringify(result.data)}`) | |
return result.data | |
} catch (err) { | |
core.setFailed(`Request failed with error ${err}`) | |
} | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ fromJSON(steps.pr.outputs.result).head.ref }} | |
repository: ${{ fromJSON(steps.pr.outputs.result).head.repo.full_name }} | |
fetch-depth: 0 | |
- name: setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.x | |
registry-url: 'https://registry.npmjs.org' | |
- name: install | |
run: yarn | |
- name: re create .npmrc file | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: ./.github/actions/build-anchor/ | |
with: | |
testing: false | |
devnet: false | |
- uses: ./.github/actions/setup-ts/ | |
- name: Publish | |
run: yarn run release:canary | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: actions/github-script@v4 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '🎉 Canary Release. You can install canary version via `npm install package@next`' | |
}) |