79451935

Date: 2025-02-19 15:41:13
Score: 4.5
Natty:
Report link

I tride do chang to different action from this link https://github.com/marketplace/actions/publish-github-release-artifacts there no siple way to publish a release HTML files from proccesed folder?

name: Release HTML Files

on:
  push:
    tags:
      - "v*"


jobs:
  build:
    name: Build Presets
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        name: checkout GITHUB code
      - name: Pobranie numeru wersji z taga
        id: get_version
        run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
      - run: scripts/process_presets.sh .
        name: process HTML
      - run: ls tmp/
        name: List Files
      - name: Upload ARMADA to Release
        uses: SierraSoftworks/[email protected]
        with:
          token: ${{ github.token }}
          overwrite: 'true'
          files: "tmp/*.html"
Reasons:
  • Blacklisted phrase (1): this link
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: utek