forked from ml4ai/skema
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from DARPA-ASKEM/split_py_rs_from_tr
split
- Loading branch information
Showing
3 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
# Automatically build Docker images on changes to main and push them to a | ||
# Container Registry using HCL Bake file. | ||
|
||
name: Build and Publish | ||
on: | ||
push: | ||
branches: ['main'] | ||
tags: ['*'] | ||
|
||
jobs: | ||
tag-generator: | ||
name: Determine image tag | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
image-tag: ${{ steps.generate.outputs.tag }} | ||
steps: | ||
- name: Generate appropriate tag | ||
id: generate | ||
run: | | ||
if [[ '${{ github.ref_type }}' == 'branch' && '${{ github.ref_name }}' == 'main' ]]; then | ||
TAG=latest | ||
else | ||
SEMVER=$( echo ${{ github.ref_name }} | sed -nre 's/^v[^0-9]*(([0-9]+\.)*[0-9]+(-[a-z]+)?).*/\1/p') | ||
if [[ -n $SEMVER ]]; then | ||
TAG=${SEMVER} | ||
else | ||
TAG=${{ github.ref_name }} | ||
fi | ||
fi | ||
echo "$TAG" | ||
echo "tag=${TAG,,}" >> ${GITHUB_OUTPUT} | ||
- name: Show Generated Tag | ||
run: echo ${{ steps.generate.outputs.tag }} | ||
|
||
bake: | ||
needs: | ||
- tag-generator | ||
- make-dockerfile | ||
uses: darpa-askem/.github/.github/workflows/bake-publish.yaml@main | ||
with: | ||
file: 'docker-bake.hcl' | ||
group: 'prod' | ||
registry: 'ghcr.io' | ||
organization: ${{ github.repository_owner }} | ||
tag: ${{ needs.tag-generator.outputs.image-tag }} | ||
secrets: | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} |
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
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