Skip to content

Commit

Permalink
Add deploy workflow (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
samwisekind authored Oct 28, 2024
1 parent f7cb4f4 commit 7e59d20
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Deploy

on:
push:
branches: [main]
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Deploy
uses: digitalocean/app_action/deploy@v2
with:
token: ${{ secrets.DIGITALOCEAN_TOKEN }}

0 comments on commit 7e59d20

Please sign in to comment.