Skip to content

Commit

Permalink
EHD-1057: Simplify hosting: Use GitHub Actions WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgriff committed Dec 18, 2024
1 parent 35a73b4 commit 9fab7ae
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build-and-deploy-all-environments.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Build, Deploy (all environments)'

on:
workflow_dispatch:
push:
branches:
- 'main'

concurrency: ${{ github.workflow }} # Prevents more than one instance of this workflow running at the same time

jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
- name: 'Checkout Code'
uses: actions/checkout@v4

0 comments on commit 9fab7ae

Please sign in to comment.