Skip to content

Commit

Permalink
feat: add actions
Browse files Browse the repository at this point in the history
  • Loading branch information
josefaidt committed Oct 8, 2022
1 parent 82491c0 commit 304478d
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy-to-vercel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: publish-to-vercel
on:
workflow_call:
inputs:
is-preview:
description: 'Is this a preview deployment?'
default: true
required: false
type: boolean
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- uses: pnpm/[email protected]
- run: pnpm install --frozen-lockfile
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=${{ inputs.is-preview && 'preview' || 'production'}} --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }} ${{ !inputs.is-preview && '--prod'}}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} ${{ !inputs.is-preview && '--prod'}}
28 changes: 28 additions & 0 deletions .github/workflows/issue-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: issue-publish
on:
issues:
types:
- labeled
jobs:
post_created:
if: |
!github.event.issue.pull_request &&
contains(github.event.issue.labels.*.name, 'status/not-published')
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/deploy-to-vercel.yml
with:
is-preview: true
post_published:
if: |
!github.event.issue.pull_request &&
(
contains(github.event.issue.labels.*.name, 'status/published') ||
contains(github.event.issue.labels.*.name, 'status/archived') ||
contains(github.event.issue.labels.*.name, 'meta/featured')
)
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/deploy-to-vercel.yml
with:
is-preview: false

0 comments on commit 304478d

Please sign in to comment.