Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/porter_app_test_11.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"on":
push:
branches:
- master
- sms/test
name: Deploy to test
jobs:
porter-deploy:
Expand All @@ -12,8 +12,21 @@ jobs:
- name: Set Github tag
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Check Docker Version
run: docker --version
- name: Install Latest Docker
run: |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce
- name: Check Docker Version
run: docker --version

- name: Setup porter
uses: porter-dev/[email protected]
with:
tagged_release: v0.57.6
- name: Deploy stack
timeout-minutes: 30
run: exec porter apply
Expand Down
Loading