Merge pull request #10 from JarvusInnovations/develop #12
Workflow file for this run
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: 'Habitat: Publish and Promote Package' | |
on: | |
push: | |
tags: [ 'v*' ] | |
env: | |
HAB_LICENSE: accept-no-persist | |
jobs: | |
habitat-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setting package.json version | |
run: npm version --no-git-tag-version --allow-same-version "${GITHUB_REF:11}" | |
- uses: JarvusInnovations/infra-components@channels/github-actions/habitat-publish/latest | |
with: | |
checkout: false | |
hab-origin-key-secret: ${{ secrets.HAB_ORIGIN_KEY }} | |
hab-origin-key-public: ${{ secrets.HAB_ORIGIN_KEY_PUB }} | |
hab-auth-token: ${{ secrets.HAB_AUTH_TOKEN }} | |
- name: Login to ghcr.io | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Compute Docker container image path | |
run: | | |
source results/last_build.env | |
DOCKER_REPOSITORY="${GITHUB_REPOSITORY,,}" | |
DOCKER_IMAGE="ghcr.io/${DOCKER_REPOSITORY}" | |
echo "Using path: ${DOCKER_IMAGE}" | |
# set environment variables | |
echo "DOCKER_REPOSITORY=${DOCKER_REPOSITORY}" >> $GITHUB_ENV | |
echo "DOCKER_IMAGE=${DOCKER_IMAGE}" >> $GITHUB_ENV | |
echo "DOCKER_VERSION=${pkg_version}" >> $GITHUB_ENV | |
- name: Build Docker container image | |
run: | | |
source results/last_build.env | |
hab pkg export container "results/${pkg_artifact}" | |
- name: Tag Docker container image | |
run: | | |
docker tag "jarvus/habitat-compose:latest" "${DOCKER_IMAGE}:latest" | |
docker tag "jarvus/habitat-compose:latest" "${DOCKER_IMAGE}:${DOCKER_VERSION}" | |
docker tag "jarvus/habitat-compose:latest" "${DOCKER_IMAGE}:${DOCKER_VERSION%.*}" | |
- name: Push Docker container image tags | |
run: | | |
docker push "${DOCKER_IMAGE}:latest" | |
docker push "${DOCKER_IMAGE}:${DOCKER_VERSION}" | |
docker push "${DOCKER_IMAGE}:${DOCKER_VERSION%.*}" |