Skip to content

Commit

Permalink
adds github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
shelane committed Feb 14, 2023
1 parent 8d19d58 commit b7d20f4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Install boilerplate

on: [push]

env:
DOCKSAL_SSH_AGENT_USE_HOST: 0
DOCKSAL_DNS_DISABLED: 1
DOCKSAL_DNS_DOMAIN: docksal.site

jobs:
install:
name: Verify boilerplate installs
runs-on: ubuntu-20.04
steps:
- name: Install Docksal
env:
DOCKSAL_VERSION: ${{ steps.use_branch.outputs.branch }}
# This installs Docksal using the passed DOCKSAL_VERSION value
run: curl -fsSL https://get.docksal.io | bash
- name: fin sysinfo
run: fin sysinfo
- name: Checkout
uses: actions/checkout@v3
- name: Install boilerplate
run: fin init

0 comments on commit b7d20f4

Please sign in to comment.