Skip to content

Commit

Permalink
feat(templates/react-starter-buttercms): Add workflow
Browse files Browse the repository at this point in the history
Add missing workflow
  • Loading branch information
pablodiehl committed Oct 23, 2024
1 parent d2f6931 commit cd527c6
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions templates/react/react-starter-buttercms/.github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Main Edge Deploy

on:
pull_request:
types:
- closed
branches:
- "main"

jobs:
deploy:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install NPM dependencies
run: npm i

- name: Install Azion CLI
run: |
curl -o azionlinux https://downloads.azion.com/linux/x86_64/azion
sudo mv azionlinux /usr/bin/azion
sudo chmod u+x /usr/bin/azion
- name: Azion Action Deploy
run: |
azion -t ${{ secrets.AZION_PERSONAL_TOKEN }}
azion deploy

0 comments on commit cd527c6

Please sign in to comment.