Added proxy-features mapping with DRG as layer and L4-DRG as proxy #34
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: publish-curation-male | |
on: | |
pull_request: | |
types: | |
- closed | |
branches: | |
- curation | |
push: | |
branches: | |
- curation | |
jobs: | |
generate-map: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install remotemaker | |
run: | | |
python -m pip install ${{ vars.REMOTE_MAKER_WHEEL }} | |
- name: run remotemaker | |
run: | | |
python -m remotemaker \ | |
--server ${{ vars.CURATION_MAP_SERVER }} \ | |
--token ${{ secrets.CURATION_SERVER_TOKEN }} \ | |
--source ${{ github.server_url }}/${{ github.repository }} \ | |
--manifest male.manifest.json \ | |
--commit curation |