-
-
Notifications
You must be signed in to change notification settings - Fork 62
34 lines (34 loc) · 1.08 KB
/
quay-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: publish-quay
on:
push:
tags:
- '*'
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get image tags
id: image_tags
run: |
echo -n "IMAGE_TAGS=${GITHUB_REF#refs/*/}" >> "${GITHUB_OUTPUT}"
- name: record schema-salad version
run: pip install setuptools_scm[toml] wheel && python setup.py --version
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io
uses: docker/login-action@v3
with:
registry: ${{ secrets.REGISTRY_SERVER }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and publish schema-salad image to Quay
uses: docker/build-push-action@v6
with:
context: .
file: schema_salad.Dockerfile
tags: quay.io/commonwl/schema_salad:${{ steps.image_tags.outputs.IMAGE_TAGS }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max