consolidate images #27
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: "Build-push_pub_group_and_package" | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'modules_combined/pub_group_and_package/**' | |
- 'modules/pub_grouper/**' | |
- 'modules/pub_transformer/**' | |
- 'modules/pub_workbook_loader/**' | |
- 'modules/pub_packager/**' | |
- 'modules/pub_files/**' | |
- 'modules/os_table_loader/**' | |
- 'modules/common/**' | |
- 'modules/data_access/**' | |
workflow_dispatch: {} # Allows trigger of workflow from web interface | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }} | |
# Use github and google registries | |
GHCR_REGISTRY: ghcr.io | |
GCP_ARTIFACT_HOST: ${{ vars.SHARED_WIF_LOCATON }}-docker.pkg.dev | |
GCP_REGISTRY: ${{ vars.SHARED_WIF_LOCATON }}-docker.pkg.dev/${{ vars.SHARED_WIF_PROJECT }}/${{ vars.SHARED_WIF_REPO }} | |
GCP_PROVIDER: ${{ vars.SHARED_WIF_PROVIDER }} | |
GCP_SERVICE_ACCOUNT: ${{ vars.SHARED_WIF_SERVICE_ACCOUNT }} | |
GHCR_NS: battelleecology | |
# Use docker.io for Docker Hub if empty | |
REGISTRY: ghcr.io | |
# Get just the repo name from the event, i.e., NEON-IS-data-processing | |
REPO_NAME: ${{ github.event.repository.name }} | |
# IS module name | |
MODULE_PATH: ./modules_combined/pub_group_and_package | |
IMAGE_NAME: neon-is-pub-grp-pack | |
jobs: | |
build-push: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'write' | |
id-token: 'write' | |
steps: | |
- name: "Checkout" | |
uses: "actions/[email protected]" | |
with: | |
fetch-depth: '0' | |
- name: Get short SHA | |
run: | | |
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
- name: Build and push | |
uses: ./.github/actions/build-push | |
with: | |
image-tag: "${short_sha}" | |