a cache for slack profile pictures and emojis
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: move to ember for deployment

dunkirk.sh 115b7371 79bac091

verified
+16 -9
+16 -9
.github/workflows/deploy.yaml
··· 8 8 runs-on: ubuntu-latest 9 9 steps: 10 10 - uses: actions/checkout@v3 11 + - name: Setup Tailscale 12 + uses: tailscale/github-action@v3 13 + with: 14 + oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} 15 + oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} 16 + tags: tag:ci 17 + use-cache: "true" 18 + - name: Configure SSH 19 + run: | 20 + mkdir -p ~/.ssh 21 + echo "StrictHostKeyChecking no" >> ~/.ssh/config 11 22 - name: file commands 12 - uses: appleboy/ssh-action@v1 13 - with: 14 - host: hackclub.app 15 - username: kierank 16 - key: ${{ secrets.SSH_KEY }} 17 - port: 22 18 - script: | 23 + run: | 24 + ssh kierank@ember << 'EOF' 19 25 cd ~/cachet 20 26 git fetch --all 21 27 git reset --hard origin/main 22 - bun install 28 + ~/.bun/bin/bun install 23 29 rm data/cachet.db 24 - systemctl --user restart cachet 30 + sudo /usr/bin/systemctl restart cachet.service 31 + EOF