Merge 3550f93ea06b753421e6d20cffefdd13c9346293 into 6ea5dc4cae9d7cd96… #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
push: | |
branches: | |
- main | |
- pr-test/* | |
concurrency: | |
group: deploy | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install defang | |
run: . <(curl -Ls https://s.defang.io/install) | |
- name: Login to Defang | |
run: defang login | |
- name: Deploy | |
run: defang compose up -v --detach |