-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (63 loc) · 2.2 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
jobs:
ghcr-container-image:
env:
DOCKERFILE_PATH: ./Dockerfile
DOCKER_BUILDKIT: 1
DOCKER_BUILD_DIR: ./
IMAGE_NAME: dci-lint
needs: npm-packages
permissions:
contents: read
packages: write
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- name: build-image
run: docker build $DOCKER_BUILD_DIR --file $DOCKERFILE_PATH --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: ghcr-authentication
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 '[A-Z]' '[a-z]')
# 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=$(echo $VERSION | sed -e 's/^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
npm-packages:
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- run: git fetch --unshallow --prune
- uses: actions/[email protected]
with:
always-auth: true
node-version: 18.12.1
registry-url: https://registry.npmjs.org
- name: install-dependencies
run: yarn install --immutable
- name: build-sources
run: yarn build
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
name: lerna-publish
run: |
npm whoami
yarn lerna publish from-git --yes --loglevel=debug
name: publish
'on':
push:
# Publish `v1.2.3` tags as releases.
tags:
- v*