this repo has no description
0
fork

Configure Feed

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

actually add workflow this time

nuv 8fc5c60b 6e7d8453

+32
+32
.forgejo/workflows/publish.yml
··· 1 + name: publish 2 + 3 + on: 4 + push: 5 + tags: 6 + - 'v*' 7 + 8 + jobs: 9 + publish: 10 + runs-on: docker 11 + container: 12 + image: docker:dind 13 + steps: 14 + - name: Checkout repository 15 + uses: https://data.forgejo.org/actions/checkout@v4 16 + 17 + - name: Make artifact directory 18 + run: mkdir artifacts 19 + 20 + - name: Build Dockerfile 21 + run: docker build --output ./artifacts/ . 22 + 23 + - name: Upload release 24 + uses: https://data.forgejo.org/actions/forgejo-release@v2.7.1 25 + with: 26 + direction: upload 27 + url: https://git.nuv.sh 28 + repo: nuv/condition_overload 29 + token: ${{ secrets.WRITE_TOKEN }} 30 + tag: ${{ forge.ref_name }} 31 + release-dir: ./artifacts/ 32 + release-notes: ${{ env.FORGEJO_SHA }}