Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiorowski committed Apr 23, 2023
1 parent f3c7dea commit c08f2ba
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy
on:
push:
branches:
- release/**
jobs:
lint-client:
uses: ./.github/workflows/lint-client.yml
lint-server:
needs:
- lint-client
uses: ./.github/workflows/lint-server.yml
deploy-users:
steps:
- uses: actions/checkout@v3
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
working-directory: service-users
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 comments on commit c08f2ba

Please sign in to comment.