Skip to content

Commit

Permalink
add cf deploy workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
rshewitt committed Dec 27, 2023
1 parent 8a7c9c3 commit 4b31e7b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: MDTranslator Rails API Deploy

# on:
# pull_request:
# branches: -main

on: push

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy to cloud.gov
uses: cloud-gov/cg-cli-tools@main
with:
cf_org: gsa-datagov
cf_space: development
cf_username: ${{secrets.CF_SERVICE_USER}}
cf_password: ${{secrets.CF_SERVICE_AUTH}}
cf_vars_file: vars.development.yml

0 comments on commit 4b31e7b

Please sign in to comment.