generated from az-digital/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: Ryan Dool <[email protected]>
- Loading branch information
Showing
9 changed files
with
2,099 additions
and
30 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: Create Release | ||
run-name: Create `${{ inputs.version }}` release from `${{ github.ref_name }}` branch | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: The version to tag and release | ||
required: true | ||
jobs: | ||
release: | ||
name: Create Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.REPO_DISPATCH_TOKEN }} | ||
|
||
- name: Set variables for Docker images | ||
run: | | ||
oldhash=${{ hashFiles('Dockerfile', 'package.json', 'package-lock.json', 'scripts/*') }} | ||
registry='ghcr.io' | ||
imageprefix="${registry}/${GITHUB_REPOSITORY}/" | ||
imagename='az-nodejs-ephemeral' | ||
imagestem="${imageprefix}${imagename}:" | ||
echo "AZ_DOCKER_REGISTRY=${registry}" >> ${GITHUB_ENV} | ||
echo "AZ_OLD_HASH=${oldhash}" >> ${GITHUB_ENV} | ||
echo "AZ_IMAGE_STEM=${imagestem}" >> ${GITHUB_ENV} | ||
echo "AZ_ICONS_SOURCE_DIR=/az-icons-src" >> ${GITHUB_ENV} | ||
echo "AZ_ICONS_FROZEN_DIR=/azbuild/az-icons" >> ${GITHUB_ENV} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Docker authentication | ||
run: | | ||
docker login "$AZ_DOCKER_REGISTRY" -u "$GITHUB_ACTOR" -p ${{ secrets.GITHUB_TOKEN }} | ||
- name: Unconditionally rebuild and save the Docker image | ||
run: | | ||
workingtitle=$(docker build -q . ) | ||
tempname="old${AZ_OLD_HASH}" | ||
docker run --name "$tempname" "$workingtitle" true | ||
docker cp -a "${tempname}:${AZ_ICONS_FROZEN_DIR}/." . | ||
docker rm "$tempname" | ||
lockhash=${{ hashFiles('Dockerfile', 'package.json', 'package-lock.json', 'scripts/*') }} | ||
ephemeral="${AZ_IMAGE_STEM}${lockhash}" | ||
docker tag "$workingtitle" "$ephemeral" | ||
docker push "$ephemeral" | ||
echo "AZ_EPHEMERAL_IMAGE=${ephemeral}" >> ${GITHUB_ENV} | ||
- name: Build variables | ||
run: | | ||
echo "AZ_VERSION=${{ github.event.inputs.version }}" >> ${GITHUB_ENV} | ||
- name: Update version | ||
run: | | ||
sudo touch config.yml | ||
sudo find . -path "./.git" -prune -o -exec chown 1000:1000 {} \; | ||
sudo chown 1000:1000 . | ||
git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" | ||
git config --global user.name "${GITHUB_ACTOR}" | ||
docker run --rm -e "AZ_RELEASE_VERSION=${AZ_VERSION}" -v $(pwd):"${AZ_ICONS_SOURCE_DIR}" "$AZ_EPHEMERAL_IMAGE" create-release | ||
git add dist package.json package-lock.json | ||
git commit -m '${{ github.event.inputs.version }}' | ||
git push | ||
echo "RELEASE_SHA=$(git rev-parse HEAD)" >> ${GITHUB_ENV} | ||
- name: Create Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
target_commitish: ${{ env.RELEASE_SHA }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag_name: "v${{ env.AZ_VERSION }}" | ||
name: "v${{ env.AZ_VERSION }}" | ||
draft: false | ||
prerelease: false | ||
body: | | ||
Release v${{ env.AZ_VERSION }} | ||
- name: Save new SHA to file | ||
run: | | ||
echo "{\"sha\": \"$(git rev-parse HEAD)\"}" > ${{ runner.temp }}/variables.json | ||
- name: Upload variables | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: variables-json-artifact | ||
path: ${{ runner.temp }} | ||
|
||
dispatch: | ||
needs: release | ||
strategy: | ||
matrix: | ||
repo: | ||
- az-digital/az-icons | ||
- az-digital/az-icons-packagist | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download variables | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: variables-json-artifact | ||
path: ${{ runner.temp }} | ||
|
||
- name: Update environment variables | ||
run: | | ||
variablesfile=${{ runner.temp }}/variables.json | ||
echo "RELEASE_SHA=$(cat ${variablesfile} | jq -r '.sha' )" >> ${GITHUB_ENV} | ||
echo "BRANCH_NAME=${GITHUB_REF_NAME}" >> ${GITHUB_ENV} | ||
- name: Notify dependencies | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.REPO_DISPATCH_TOKEN }} | ||
repository: ${{ matrix.repo }} | ||
event-type: az_icons_release | ||
client-payload: '{"version": "${{ github.event.inputs.version }}", "ref": "${{ env.RELEASE_SHA }}", "sha": "${{ env.RELEASE_SHA }}", "branch": "${{env.BRANCH_NAME}}"}' |
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 |
---|---|---|
|
@@ -45,6 +45,3 @@ Thumbs.db | |
*.flv | ||
*.mov | ||
*.wmv | ||
|
||
### NPM ### | ||
package-lock.json |
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,37 @@ | ||
FROM node:16.17.1-bullseye-slim | ||
|
||
ENV LANG C.UTF-8 | ||
|
||
COPY scripts/copy-npm-config.sh /usr/local/bin/copy-npm-config | ||
COPY scripts/create-release.sh /usr/local/bin/create-release | ||
|
||
# Build args don't normally persist as environment variables. | ||
ARG AZ_ICONS_FROZEN_DIR | ||
ENV AZ_ICONS_FROZEN_DIR ${AZ_ICONS_FROZEN_DIR:-/azbuild/az-icons} | ||
ARG AZ_ICONS_SOURCE_DIR | ||
ENV AZ_ICONS_SOURCE_DIR ${AZ_ICONS_SOURCE_DIR:-/az-icons-src} | ||
|
||
# Silence warnings from the update-notifier npm package. | ||
ENV NO_UPDATE_NOTIFIER 1 | ||
|
||
WORKDIR $AZ_ICONS_SOURCE_DIR | ||
|
||
# COPY "package.json" "$AZ_ICONS_FROZEN_DIR"/ | ||
|
||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -y \ | ||
git \ | ||
python3 \ | ||
python3-pip \ | ||
python3-setuptools \ | ||
python3-wheel \ | ||
rsync \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& pip3 install 'awscli~=1.19.41' \ | ||
&& cd "${AZ_ICONS_FROZEN_DIR}" \ | ||
&& npm config set cache='/tmp/.npm' \ | ||
&& chmod 755 /root \ | ||
&& chmod 644 /root/.npmrc \ | ||
&& npm install -g [email protected] \ | ||
&& npm install \ | ||
&& find node_modules -name '.DS_Store' -exec rm {} \; |
Oops, something went wrong.