Update SIWA deliverables location #1384
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: Continuous Integration | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
- edited | |
jobs: | |
save-pr: | |
name: Save PR Number | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save PR number | |
env: | |
PR_NUMBER: ${{ github.event.number }} | |
PR_SHA: ${{ github.event.pull_request.head.sha }} | |
MERGE_SHA: ${{ github.sha }} | |
run: | | |
mkdir -p ./pr | |
echo $PR_NUMBER > ./pr/pr_number | |
echo $PR_SHA > ./pr/pr_sha | |
echo $MERGE_SHA > ./pr/merge_sha | |
- name: Upload PR Number | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr_number | |
path: pr/ | |
xgovw-validator: | |
name: xGov Walidator | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout xGov Repository | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | |
- uses: algorandfoundation/xgovw-action@dist | |
id: xgovw | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
unchecked: 0000 |