Skip to content

Commit

Permalink
Add deco-deploy github action
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Oct 23, 2023
1 parent 31677fd commit ece1877
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deco-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy
on:
push:
branches: [main]
pull_request:
branches: main

jobs:
deploy:
strategy:
matrix:
site:
[
"storefront",
"storefront-vtex",
"storefront-linx",
"store-shopify",
"storefront-wake",
]
name: Deploy
runs-on: ubuntu-latest

permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Deco Deploy
uses: deco-cx/deploy@v0
with:
site: ${{ matrix.site }}

0 comments on commit ece1877

Please sign in to comment.