chore: update versions page #68
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# Sample workflow for building and deploying a Jekyll site to AWS S3 | |
name: preview (untp-dpp-pages) | |
on: | |
push: | |
branches: | |
- untp-dpp-pages | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "untp-dpp-pages" | |
cancel-in-progress: true | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: 'us-west-1' | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "2.6.5" # Not needed with a .ruby-version file | |
- id: set-env | |
name: output a major_version for the release | |
run: | | |
major_version=$(cat _config_preview.yml | yq e '.versions.untp-dpp' | cut -d. -f1) | |
echo "major_version=$major_version" >> "$GITHUB_OUTPUT" | |
- name: Print the major_version | |
run: | | |
echo "the major_version is ${{ steps.set-env.outputs.major_version }}" | |
- name: "Bundle install" | |
run: bundle install | |
- name: "Build Site" | |
run: | | |
yq -i '.baseurl="/vocabulary/untp/dpp/${{ steps.set-env.outputs.major_version }}"' _config_preview.yml | |
bundle exec jekyll build --config _config_preview.yml | |
- name: "Deploy to AWS S3" | |
run: | | |
aws s3 sync ./_site/ s3://uncefact-vocab-preview-sam-bucket-private/vocabulary/untp/dpp/${{ steps.set-env.outputs.major_version }} --cache-control max-age=604800 | |
aws cloudfront create-invalidation --distribution-id "E32QP2QS6SXRHC" --paths "/vocabulary/untp/dpp/${{ steps.set-env.outputs.major_version }}/*" |