The Trans Directory
0
fork

Configure Feed

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

ci: add wisp deployment step to GitHub Actions workflow

aria 6c0f85be 34846178

+11 -1
+11 -1
.github/workflows/deploy.yml
··· 43 43 url: ${{ steps.deployment.outputs.page_url }} 44 44 runs-on: ubuntu-latest 45 45 steps: 46 + - run: | 47 + curl https://sites.wisp.place/nekomimi.pet/wisp-cli-binaries/wisp-cli-x86_64-linux -o wisp-cli 48 + - run: | 49 + chmod +x wisp-cli 46 50 - name: Deploy to GitHub Pages 47 51 id: deployment 48 - uses: actions/deploy-pages@v4 52 + uses: actions/deploy-pages@v4 53 + - name: deploy to wisp 54 + run: | 55 + ./wisp-cli deploy "${{ vars.WISP_HANDLE }}" \ 56 + --path "./public" \ 57 + --site "${{ vars.SITE_NAME }}" \ 58 + --password "${{ secrets.WISP_APP_PASSWORD }}"