bump hplans to latest to pick up hip100 (#41) #84
Workflow file for this run
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: Region Params | |
on: | |
push: | |
paths: | |
- "regions.txt" | |
- "region_params/**" | |
- ".github/workflows/region_params.yml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "regions.txt" | |
- "region_params/**" | |
- ".github/workflows/region_params.yml" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | Tools | |
uses: jaxxstorm/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
repo: helium/lorawan-h3 | |
tag: lw-generator-v0.4.0 | |
- name: Build | Generate | |
run: | | |
for region in `cat regions.txt`; do | |
lw-generator params generate region_params/${region}.json ${region}.rpz | |
done | |
- name: Release | Artifacts | |
if: startsWith(github.ref, 'refs/tags/region_params') | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
fail_on_unmatched_files: true | |
name: ${{github.ref_name}} | |
files: | | |
*.rpz |