We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 728bff8 commit 4b6cd1dCopy full SHA for 4b6cd1d
1 file changed
.github/workflows/publish-release.yaml
@@ -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
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