Added Google Analytics to documentation #326
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- 'release/*' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
- develop | |
- 'release/*' | |
env: | |
MAIN_REPO: IN-CORE/pyincore-viz | |
jobs: | |
# ---------------------------------------------------------------------- | |
# DOCKER BUILD | |
# ---------------------------------------------------------------------- | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout source code | |
- uses: actions/checkout@v2 | |
# calculate some variables that are used later | |
- name: version information | |
run: | | |
if [ "${{ github.event.release.target_commitish }}" != "" ]; then | |
BRANCH="${{ github.event.release.target_commitish }}" | |
elif [[ $GITHUB_REF =~ pull ]]; then | |
BRANCH="$(echo $GITHUB_REF | sed 's#refs/pull/\([0-9]*\)/merge#PR-\1#')" | |
else | |
BRANCH=${GITHUB_REF##*/} | |
fi | |
echo "GITHUB_BRANCH=${BRANCH}" >> $GITHUB_ENV | |
if [ "$BRANCH" == "main" ]; then | |
version=$(awk -F= '/^release/ { print $2}' docs/source/conf.py | sed "s/[ ']//g") | |
tags="latest" | |
oldversion="" | |
while [ "${oldversion}" != "${version}" ]; do | |
oldversion="${version}" | |
tags="${tags},${version}" | |
version=${version%.*} | |
done | |
echo "VERSION=${version}" >> $GITHUB_ENV | |
echo "TAGS=${tags}" >> $GITHUB_ENV | |
GA_KEY="${{ secrets.GA_KEY }}" | |
elif [ "$BRANCH" == "develop" ]; then | |
echo "VERSION=develop" >> $GITHUB_ENV | |
echo "TAGS=develop" >> $GITHUB_ENV | |
GA_KEY="${{ secrets.GA_KEY_DEV }}" | |
else | |
echo "VERSION=testing" >> $GITHUB_ENV | |
echo "TAGS=${BRANCH}" >> $GITHUB_ENV | |
GA_KEY="${{ secrets.GA_KEY_DEV }}" | |
fi | |
echo "GA_KEY=${GA_KEY}" >> $GITHUB_ENV | |
echo "GA_KEY is: $GA_KEY" | |
echo "GA_KEY_DEV in secret is: ${{ secrets.GA_KEY_DEV }}" | |
echo "GA_KEY in secret is: ${{ secrets.GA_KEY }}" | |
echo "GA_KEY in process is: $GA_KEY" | |
echo "GA_KEY in env is: ${{ env.GA_KEY }}" | |
# print out env.GA_KEY | |
- name: Print out env.GA_KEY | |
run: | | |
echo "GA_KEY is: ${{ env.GA_KEY }}" | |
# build image | |
- name: Build image | |
uses: elgohr/[email protected] | |
with: | |
name: incore/doc/pyincore-viz | |
no_push: true | |
build-args: | | |
GA_KEY:${{ env.GA_KEY }} | |
# this will publish to NCSA | |
- name: Publish to NCSA Hub | |
#if: github.event_name != 'pull_request' && github.repository == env.MAIN_REPO | |
if: github.repository == env.MAIN_REPO | |
uses: elgohr/[email protected] | |
env: | |
BRANCH: ${{ env.GITHUB_BRANCH }} | |
VERSION: ${{ env.VERSION }} | |
BUILDNUMBER: ${{ github.run_number }} | |
GITSHA1: ${{ github.sha }} | |
with: | |
registry: hub.ncsa.illinois.edu | |
name: incore/doc/pyincore-viz | |
username: ${{ secrets.HUB_USERNAME }} | |
password: ${{ secrets.HUB_PASSWORD }} | |
tags: "${{ env.TAGS }}" | |
buildargs: BRANCH,VERSION,BUILDNUMBER,GITSHA1 |