home to your local SPACEGIRL 💫 arimelody.space
1
fork

Configure Feed

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

maybe fix setup-go action

+38
+36
.forgejo/workflows/push-prod-test.yaml
··· 1 + on: 2 + push: 3 + branches: 4 + - dev 5 + 6 + env: 7 + EXEC: arimelody-web 8 + 9 + jobs: 10 + deploy: 11 + runs-on: docker 12 + steps: 13 + - name: Checkout repository 14 + uses: actions/checkout@v4 15 + 16 + - name: Set up Go 17 + uses: actions/setup-go@v4 18 + with: 19 + go-version: '^1.25.1' 20 + 21 + - name: Run tests 22 + run: go test -v ./model 23 + 24 + - name: Build binary 25 + run: make build 26 + 27 + - name: Bundle tarball 28 + run: make bundle 29 + 30 + - name: Set up SSH keys 31 + uses: webfactory/ssh-agent@v0.9.0 32 + with: 33 + ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} 34 + 35 + - name: Copy to production server 36 + run: echo "we'll just pretend it works lol"
+2
.forgejo/workflows/push-prod.yaml
··· 15 15 16 16 - name: Set up Go 17 17 uses: actions/setup-go@v4 18 + with: 19 + go-version: '^1.25.1' 18 20 19 21 - name: Run tests 20 22 run: go test -v ./model