Release #133
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 | |
permissions: | |
packages: write | |
contents: write | |
on: | |
# Triggered on new GitHub Release | |
release: | |
types: [published] | |
# Triggered on every successful Build action | |
workflow_run: | |
workflows: ["Build"] | |
branches: [main,master] | |
types: | |
- completed | |
# Manual trigger for rollback to specific release or redeploy latest | |
workflow_dispatch: | |
inputs: | |
version: | |
default: latest | |
description: Tag you want to release. | |
required: true | |
jobs: | |
push_to_registry: | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.workflow_run.conclusion != 'failure' }} | |
steps: | |
# Checkout latest or specific tag | |
- name: checkout | |
if: ${{ github.event.inputs.version == '' || github.event.inputs.version == 'latest' }} | |
uses: actions/checkout@v3 | |
- name: checkout tag | |
if: ${{ github.event.inputs.version != '' && github.event.inputs.version != 'latest' }} | |
uses: actions/checkout@v3 | |
with: | |
ref: refs/tags/${{ github.event.inputs.version }} | |
- name: Replace Prod API and CDN URLs | |
env: | |
deploy_api: ${{ secrets.DEPLOY_API }} | |
deploy_cdn: ${{ secrets.DEPLOY_CDN }} | |
run: | | |
if [ -e ./.deploy/ci.prebuild.sh ] | |
then | |
chmod +x ./.deploy/ci.prebuild.sh | |
./.deploy/ci.prebuild.sh | |
else | |
echo "Skipping CI prebuild" | |
fi | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
# Build UI which is copied to local server wwwroot directory to match content | |
- name: Install and build npm | |
run: | | |
npm install | |
npm run build | |
[[ -f ./post.build.js ]] && node ./post.build.js | |
working-directory: ./ui | |
# Assign environment variables used in subsequent steps | |
- name: Env variable assignment | |
run: echo "image_repository_name=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
# TAG_NAME defaults to 'latest' if not a release or manual deployment | |
- name: Assign version | |
run: | | |
echo "TAG_NAME=latest" >> $GITHUB_ENV | |
if [ "${{ github.event.release.tag_name }}" != "" ]; then | |
echo "TAG_NAME=${{ github.event.release.tag_name }}" >> $GITHUB_ENV | |
fi; | |
if [ "${{ github.event.inputs.version }}" != "" ]; then | |
echo "TAG_NAME=${{ github.event.inputs.version }}" >> $GITHUB_ENV | |
fi; | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Build and push new docker image, skip for manual redeploy other than 'latest' | |
- name: Build and push Docker images | |
uses: docker/build-push-action@v3 | |
if: ${{ github.event.inputs.version == '' || github.event.inputs.version == 'latest' }} | |
with: | |
file: Dockerfile | |
context: . | |
push: true | |
tags: ghcr.io/${{ env.image_repository_name }}:${{ env.TAG_NAME }} | |
# Deploy UI to GitHub Pages | |
- name: Deploy to GitHub Pages | |
env: | |
deploy_cdn: ${{ secrets.DEPLOY_CDN }} | |
if: ${{ env.deploy_cdn != '' }} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./api/MyApp/wwwroot | |
user_name: 'GitHub Action' | |
user_email: '[email protected]' | |
deploy_via_ssh: | |
needs: push_to_registry | |
runs-on: ubuntu-22.04 | |
if: ${{ github.event.workflow_run.conclusion != 'failure' }} | |
steps: | |
# Checkout latest or specific tag | |
- name: checkout | |
if: ${{ github.event.inputs.version == '' || github.event.inputs.version == 'latest' }} | |
uses: actions/checkout@v3 | |
- name: checkout tag | |
if: ${{ github.event.inputs.version != '' && github.event.inputs.version != 'latest' }} | |
uses: actions/checkout@v3 | |
with: | |
ref: refs/tags/${{ github.event.inputs.version }} | |
- name: repository name fix and env | |
run: | | |
echo "image_repository_name=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
echo "TAG_NAME=latest" >> $GITHUB_ENV | |
if [ "${{ github.event.release.tag_name }}" != "" ]; then | |
echo "TAG_NAME=${{ github.event.release.tag_name }}" >> $GITHUB_ENV | |
fi; | |
if [ "${{ github.event.inputs.version }}" != "" ]; then | |
echo "TAG_NAME=${{ github.event.inputs.version }}" >> $GITHUB_ENV | |
fi; | |
- name: Create .env file | |
run: | | |
echo "Generating .env file" | |
echo "#Autogenerated .env file" > .env | |
echo "HOST_DOMAIN=${{ secrets.DEPLOY_API }}" >> .env | |
echo "DEPLOY_API=${{ secrets.DEPLOY_API }}" >> .env | |
echo "DEPLOY_CDN=${{ secrets.DEPLOY_CDN }}" >> .env | |
echo "LETSENCRYPT_EMAIL=${{ secrets.LETSENCRYPT_EMAIL }}" >> .env | |
echo "APP_NAME=${{ github.event.repository.name }}" >> .env | |
echo "IMAGE_REPO=${{ env.image_repository_name }}" >> .env | |
echo "RELEASE_VERSION=${{ env.TAG_NAME }}" >> .env | |
- name: copy files to target server via scp | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.DEPLOY_API }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
port: 22 | |
key: ${{ secrets.DEPLOY_KEY }} | |
strip_components: 2 | |
source: "./.deploy/docker-compose.yml,./.deploy/.env" | |
target: "~/.deploy/${{ github.event.repository.name }}/" | |
- name: Run remote db migrations | |
uses: appleboy/[email protected] | |
env: | |
APPTOKEN: ${{ secrets.GITHUB_TOKEN }} | |
USERNAME: ${{ secrets.DEPLOY_USERNAME }} | |
with: | |
host: ${{ secrets.DEPLOY_API }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
key: ${{ secrets.DEPLOY_KEY }} | |
port: 22 | |
envs: APPTOKEN,USERNAME | |
script: | | |
echo $APPTOKEN | docker login ghcr.io -u $USERNAME --password-stdin | |
cd ~/.deploy/${{ github.event.repository.name }} | |
docker compose pull | |
docker compose up app-migration | |
# Deploy Docker image with your application using `docker compose up` remotely | |
- name: remote docker-compose up via ssh | |
uses: appleboy/[email protected] | |
env: | |
APPTOKEN: ${{ secrets.GITHUB_TOKEN }} | |
USERNAME: ${{ secrets.DEPLOY_USERNAME }} | |
with: | |
host: ${{ secrets.DEPLOY_API }} | |
username: ${{ secrets.DEPLOY_USERNAME }} | |
key: ${{ secrets.DEPLOY_KEY }} | |
port: 22 | |
envs: APPTOKEN,USERNAME | |
script: | | |
echo $APPTOKEN | docker login ghcr.io -u $USERNAME --password-stdin | |
cd ~/.deploy/${{ github.event.repository.name }} | |
docker compose pull | |
docker compose up app -d |