soft-serve.yml
1name: Soft-Serve
2
3on:
4 push:
5 branches:
6 - main
7
8jobs:
9 softserve:
10 runs-on: ubuntu-latest
11 steps:
12 - name: Checkout code
13 uses: actions/checkout@v2
14 with:
15 fetch-depth: 0
16
17 - name: Push to Soft-Serve
18 uses: charmbracelet/soft-serve-action@v1
19 with:
20 server: "git.charm.sh"
21 ssh-key: "${{ secrets.CHARM_SOFT_SERVE_KEY }}"
22 name: "soft-serve"