Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Merge pull request #8 from Sage-Bionetworks-Workflows/bwmac/ORCA-225/… #16

Merge pull request #8 from Sage-Bionetworks-Workflows/bwmac/ORCA-225/…

Merge pull request #8 from Sage-Bionetworks-Workflows/bwmac/ORCA-225/… #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ['v[0-9]*', '[0-9]+.[0-9]+*'] # Match tags that resemble a version
jobs:
docker-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=ref,event=branch
type=sha
latest
- name: Publish Docker Image
uses: docker/build-push-action@v3
with:
context: .
build-args: |
TARBALL_PATH=${{ needs.prepare.outputs.tarball-path }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}