Skip to content

Merge pull request #204 from lsst/tickets/DM-43097 #1371

Merge pull request #204 from lsst/tickets/DM-43097

Merge pull request #204 from lsst/tickets/DM-43097 #1371

Workflow file for this run

name: Build TAP Schema and Datalink
on: push
jobs:
build:
runs-on: ubuntu-latest
# Only do Docker builds of ticket branches and tagged releases.
if: startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/tickets/')
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
# Only install Felis rather than using the separate requirements.txt,
# since the dependencies may conflict. Felis already includes all the
# required dependencies for the tap-schema build.
run: |
python -m pip install --upgrade pip
pip install lsst-felis
working-directory: ./tap-schema
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Run the build
id: build-tap-schema
run: ./build-all
working-directory: ./tap-schema
- name: Build datalink release
id: build-datalink
run: ./build
working-directory: ./datalink
- name: Release Datalink
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
datalink/datalink-columns.zip
datalink/datalink-snippets.zip