Skip to content

Commit

Permalink
feat: add jargon release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kshychko committed Jul 10, 2024
1 parent 9eed000 commit f1802f3
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release-untp-core-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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: Deploy site preview to AWS S3 (untp-core-pages) - release tag

on:
push:
tags:
- 'untp/core/*'

# 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: "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
- name: "Bundle install"
run: bundle install
- name: "Build Site"
run: 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/${{ github.ref_name }} --delete --cache-control max-age=604800
aws cloudfront create-invalidation --distribution-id "E32QP2QS6SXRHC" --paths "/vocabulary/${{ github.ref_name }}/*"

0 comments on commit f1802f3

Please sign in to comment.