chore: change github org from hyperledger to hyperledger-cacti in go … #202
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: dev-container-vscode-publish | |
on: | |
# Publish `v1.2.3` tags as releases. | |
push: | |
tags: | |
- v* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
IMAGE_NAME: cactus-dev-container-vscode | |
NODEJS_VERSION: v18.18.2 | |
jobs: | |
# Push image to GitHub Packages. | |
# See also https://docs.docker.com/docker-hub/builds/ | |
build-tag-push-container: | |
runs-on: ubuntu-22.04 | |
env: | |
DOCKER_BUILDKIT: 1 | |
DOCKERFILE_PATH: ./.devcontainer/Dockerfile | |
DOCKER_BUILD_DIR: ./.devcontainer/ | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Use Node.js ${{ env.NODEJS_VERSION }} | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: ${{ env.NODEJS_VERSION }} | |
- uses: actions/checkout@v4.1.7 | |
- name: npm_install_@devcontainers/cli@0.44.0 | |
run: npm install -g @devcontainers/cli@0.44.0 | |
- name: npx_yes_devcontainers_cli_build | |
run: npx --yes @devcontainers/cli@0.44.0 build --workspace-folder="./" --log-level=trace --push=false --config="./.devcontainer/devcontainer.json" --image-name="$IMAGE_NAME" | |
- name: Log in to registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin | |
- name: Push image | |
run: | | |
SHORTHASH=$(git rev-parse --short "$GITHUB_SHA") | |
TODAYS_DATE="$(date +%F)" | |
DOCKER_TAG="$TODAYS_DATE-$SHORTHASH" | |
IMAGE_ID="ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME" | |
# Change all uppercase to lowercase | |
IMAGE_ID=$(echo "$IMAGE_ID" | tr '[:upper:]' '[:lower:]') | |
# Strip git ref prefix from version | |
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | |
# Strip "v" prefix from tag name | |
[[ "${{ github.ref }}" == "refs/tags/*" ]] && VERSION="${VERSION//^v//}" | |
# Do not use the `latest` tag at all, tag with date + git short hash if there is no git tag | |
[ "$VERSION" == "main" ] && VERSION=$DOCKER_TAG | |
echo IMAGE_ID="$IMAGE_ID" | |
echo VERSION="$VERSION" | |
docker tag "$IMAGE_NAME" "$IMAGE_ID:$VERSION" | |
docker push "$IMAGE_ID:$VERSION" |