Skip to content

Commit

Permalink
commit generated gha workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
solocommand committed Dec 6, 2024
1 parent a169fea commit 8575425
Show file tree
Hide file tree
Showing 3 changed files with 200 additions and 0 deletions.
85 changes: 85 additions & 0 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Deploy newsletters (production)

on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
version:
runs-on: ubuntu-latest
steps:
- id: tag_version
run: |
REF=$(echo $GITHUB_REF | cut -d / -f 3)
[[ "$GITHUB_REF" =~ ^refs/tags.*$ ]] && VERSION="$REF" || VERSION="${REF}-${GITHUB_SHA::7}"
echo "version=$VERSION" >> $GITHUB_OUTPUT
outputs:
version: ${{ steps.tag_version.outputs.version }}

notify-start:
needs: [version]
uses: parameter1/actions/.github/workflows/notify-start.yml@main
secrets: inherit
with:
version: ${{ needs.version.outputs.version }}

post-deploy-failure:
if: failure()
needs: [notify-start, build-newsletters, deploy-newsletters]
uses: parameter1/actions/.github/workflows/notify-fail.yml@main
secrets: inherit
with:
slack-thread: ${{ needs.notify-start.outputs.slack-thread }}

post-deploy-complete:
if: success()
needs: [notify-start, build-newsletters, deploy-newsletters]
uses: parameter1/actions/.github/workflows/notify-complete.yml@main
secrets: inherit
with:
slack-thread: ${{ needs.notify-start.outputs.slack-thread }}

#########################
# Add newsletters here! #
#########################

build-newsletters:
needs: [version]
uses: parameter1/actions/.github/workflows/newsletter-build-push-test.yml@main
strategy:
matrix:
#####################################################
#v# Make sure this matches the newsletter matrix! #v#
#####################################################
newsletter:
- { stack: tauron, account: bizbash, tenant: bzb, rancher_label: bizbash-media-all }
#####################################################
#^# Make sure this matches the newsletter matrix! #^#
#####################################################
with:
ecr_registry: ${{ vars.AWS_ECR_REGISTRY }}
docker_image: ${{ vars.AWS_ECR_REGISTRY }}/mindful-web/newsletters:${{ matrix.newsletter.account }}-${{ matrix.newsletter.tenant }}-${{ needs.version.outputs.version }}
tenant: ${{ matrix.newsletter.tenant }}
push: true
secrets: inherit

deploy-newsletters:
needs: [version, build-newsletters]
uses: parameter1/actions/.github/workflows/newsletter-deploy-production.yml@main
strategy:
matrix:
#####################################################
#v# Make sure this matches the newsletter matrix! #v#
#####################################################
newsletter:
- { stack: tauron, account: bizbash, tenant: bzb, rancher_label: bizbash-media-all }
#####################################################
#^# Make sure this matches the newsletter matrix! #^#
#####################################################
with:
docker_image: ${{ vars.AWS_ECR_REGISTRY }}/mindful-web/newsletters:${{ matrix.newsletter.account }}-${{ matrix.newsletter.tenant }}-${{ needs.version.outputs.version }}
infra_stack: ${{ matrix.newsletter.stack }}
rancher_label_key: mindful-web-newsletter
rancher_label_val: ${{ matrix.newsletter.rancher_label }}
secrets: inherit
85 changes: 85 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Deploy newsletters (staging)

on:
push:
branches:
- staging

jobs:
version:
runs-on: ubuntu-latest
steps:
- id: tag_version
run: |
REF=$(echo $GITHUB_REF | cut -d / -f 3)
[[ "$GITHUB_REF" =~ ^refs/tags.*$ ]] && VERSION="$REF" || VERSION="${REF}-${GITHUB_SHA::7}"
echo "version=$VERSION" >> $GITHUB_OUTPUT
outputs:
version: ${{ steps.tag_version.outputs.version }}

notify-start:
needs: [version]
uses: parameter1/actions/.github/workflows/notify-start.yml@main
secrets: inherit
with:
version: ${{ needs.version.outputs.version }}

post-deploy-failure:
if: failure()
needs: [notify-start, build-newsletters, deploy-newsletters]
uses: parameter1/actions/.github/workflows/notify-fail.yml@main
secrets: inherit
with:
slack-thread: ${{ needs.notify-start.outputs.slack-thread }}

post-deploy-complete:
if: success()
needs: [notify-start, build-newsletters, deploy-newsletters]
uses: parameter1/actions/.github/workflows/notify-complete.yml@main
secrets: inherit
with:
slack-thread: ${{ needs.notify-start.outputs.slack-thread }}

#########################
# Add newsletters here! #
#########################

build-newsletters:
needs: [version]
uses: parameter1/actions/.github/workflows/newsletter-build-push-test.yml@main
strategy:
matrix:
#####################################################
#v# Make sure this matches the newsletter matrix! #v#
#####################################################
newsletter:
- { stack: tauron, account: bizbash, tenant: bzb, rancher_label: bizbash-media-all }
#####################################################
#^# Make sure this matches the newsletter matrix! #^#
#####################################################
with:
ecr_registry: ${{ vars.AWS_ECR_REGISTRY }}
docker_image: ${{ vars.AWS_ECR_REGISTRY }}/mindful-web/newsletters-staging:${{ matrix.newsletter.account }}-${{ matrix.newsletter.tenant }}-${{ needs.version.outputs.version }}
tenant: ${{ matrix.newsletter.tenant }}
push: true
secrets: inherit

deploy-newsletters:
needs: [version, build-newsletters]
uses: parameter1/actions/.github/workflows/newsletter-deploy-staging.yml@main
strategy:
matrix:
#####################################################
#v# Make sure this matches the newsletter matrix! #v#
#####################################################
newsletter:
- { stack: tauron, account: bizbash, tenant: bzb, rancher_label: bizbash-media-all }
#####################################################
#^# Make sure this matches the newsletter matrix! #^#
#####################################################
with:
docker_image: ${{ vars.AWS_ECR_REGISTRY }}/mindful-web/newsletters-staging:${{ matrix.newsletter.account }}-${{ matrix.newsletter.tenant }}-${{ needs.version.outputs.version }}
infra_stack: ${{ matrix.newsletter.stack }}
rancher_label_key: mindful-web-newsletter
rancher_label_val: ${{ matrix.newsletter.rancher_label }}
secrets: inherit
30 changes: 30 additions & 0 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Node.js CI

on:
push:
branches: ["*"]
pull_request:
branches: ["*"]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 14.21

- uses: actions/cache@v4
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- run: yarn test

0 comments on commit 8575425

Please sign in to comment.