Skip to content

Commit

Permalink
ip address echo and certs folder create
Browse files Browse the repository at this point in the history
  • Loading branch information
alondhe committed Aug 21, 2023
1 parent 64d0167 commit a47d5c3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,19 @@ jobs:
uses: douglascamata/setup-docker-macos-action@v1-alpha
- name: Checkout
uses: actions/checkout@v3
- name: Create certs folder
- name: Create certs folder (Mac)
if: runner.os == 'macOS'
run: mkdir /Users/runner/work/Broadsea/Broadsea/certs
- name: Create certs folder (Linux)
if: runner.os == 'Linux'
run: mkdir -p ./certs
- name: Public IP
id: ip
uses: haythem/public-ip@v1.3
- name: Print Public IP
run: |
echo ${{ steps.ip.outputs.ipv4 }}
echo ${{ steps.ip.outputs.ipv6 }}
- name: Build traefik container
run: docker-compose --env-file ./.env up -d
- name: Build atlasdb profile
Expand Down

0 comments on commit a47d5c3

Please sign in to comment.