Bump to Node20 (#72) #51
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: Release Version | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: Release Version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true | |
# Set AWS Credentials | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-session-token: ${{ secrets.AWS_SESSION_TOKEN }} | |
aws-region: ${{ secrets.REGION }} | |
# Setup | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install virtualenv | |
run: pip install virtualenv | |
- name: Install dependencies | |
run: make setup-predeploy | |
# Release if required | |
- name: Setup versions in env variables | |
id: version | |
run: | | |
function version { echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'; } | |
echo "THIS_VERSION=$(make version | sed s/^v//)" >> $GITHUB_ENV | |
echo "THIS_VERSION_COMPARABLE=$(version $(make version | sed s/^v//))" >> $GITHUB_ENV | |
echo "LATEST_VERSION_COMPARABLE=$(version $(git describe --tags $(git rev-list --tags --max-count=1) | sed s/^v// 2> /dev/null || echo '0'))" >> $GITHUB_ENV | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@latest | |
if: env.THIS_VERSION_COMPARABLE > env.LATEST_VERSION_COMPARABLE | |
env: | |
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} | |
with: | |
tag_name: v${{ env.THIS_VERSION }} | |
release_name: Release v${{ env.THIS_VERSION }} | |
body: | | |
See the CHANGELOG for a list of features included in this release | |
draft: false | |
prerelease: true | |
# Package and Upload Archive | |
- name: Pre-Package Copy Function | |
run: cd source/witch/ && npm install --prefix nodejs mime-types && cp witch.js nodejs/node_modules/ && zip -r ../../witch.zip nodejs && cd ../../ | |
- name: Package Release | |
run: zip -r packaged.zip -@ < ci/include.lst | |
- name: Upload Release | |
run: aws s3 cp packaged.zip s3://$CFN_BUCKET/amazon-cloudfront-secure-static-site/v${{ env.THIS_VERSION }}/amazon-cloudfront-secure-static-site.zip | |
env: | |
CFN_BUCKET: ${{ secrets.CFN_BUCKET }} |