Skip to content

Commit 5adcf65

Browse files
committed
GHA workflow needs to be in a branch to trigger on a push to the branch...
1 parent e058659 commit 5adcf65

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: publish-release
2+
on:
3+
push:
4+
branches:
5+
- release
6+
workflow_dispatch:
7+
8+
jobs:
9+
generate-map:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Install Python
13+
uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.10'
16+
- name: Install remotemaker
17+
run: |
18+
python -m pip install ${{ vars.REMOTE_MAKER_WHEEL }}
19+
- name: run remotemaker
20+
run: |
21+
python -m remotemaker \
22+
--server ${{ vars.STAGING_MAP_SERVER }} \
23+
--token ${{ secrets.STAGING_SERVER_TOKEN }} \
24+
--source ${{ github.server_url }}/${{ github.repository }} \
25+
--manifest manifest.json \
26+
--commit release

0 commit comments

Comments
 (0)