Skip to content

Commit

Permalink
feat: adding ci/cd
Browse files Browse the repository at this point in the history
nsfilho committed Oct 8, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
elkowar ElKowar
1 parent c328060 commit 539d997
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/devnet.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy for devnet

on:
push:
branches: [main]
paths:
- .github/workflows/*.yaml
- **/*.go

jobs:
build:
name: Deploying
runs-on: ubuntu-latest
environment: devnet
steps:
- name: Updating devnet
env:
DEVNET_UPDATE_URL: ${{ secrets.DEVNET_UPDATE_URL }}
run: |
curl -X "POST" -H 'Content-Type: application/json' -d "{}" $DEVNET_UPDATE_URL

0 comments on commit 539d997

Please sign in to comment.