Add bladebit install script #127
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: Test official Chia Docker Image | |
on: | |
pull_request: | |
jobs: | |
docker_build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
id: 'tag' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
result-encoding: string | |
script: | | |
const release = await github.rest.repos.getLatestRelease({ | |
owner: 'Chia-Network', | |
repo: 'chia-blockchain', | |
}); | |
return release.data.tag_name; | |
- run: docker build --build-arg BRANCH="${{ steps.tag.outputs.result }}" . |