I get told to shut up a lot by my friend. This is the microsite that documents this in detail. shutup.jp
postcards microsite
2
fork

Configure Feed

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

Fix deployment to Github Pages

+20 -4
+20 -4
.github/workflows/publish.yml
··· 8 8 workflow_dispatch: 9 9 10 10 permissions: 11 - contents: write 11 + contents: read 12 12 13 13 jobs: 14 14 build: ··· 31 31 - name: Build site 32 32 run: go run . 33 33 34 - - name: Upload site artifact 34 + - name: Upload artifact for deployment 35 35 uses: actions/upload-pages-artifact@v3 36 36 with: 37 - name: site 38 - path: ./dist 37 + path: dist 38 + 39 + deploy: 40 + needs: build 41 + 42 + permissions: 43 + pages: write 44 + id-token: write 45 + 46 + environment: 47 + name: github-pages 48 + url: ${{ steps.deployment.outputs.page_url }} 49 + 50 + runs-on: ubuntu-latest 51 + steps: 52 + - name: Deploy to GitHub Pages 53 + id: deployment 54 + uses: actions/deploy-pages@v4