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"