Restore files from upstream and normalize line endings #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: WinPE Release Build | ||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
| permissions: | ||
| contents: write | ||
| jobs: | ||
| build: | ||
| uses: ./.github/workflows/build-winpe-core.yml | ||
| with: | ||
| architecture: "amd64" | ||
| iso_base_name: "winpe-ablestack-v2k" | ||
| iso_suffix: "" # 謔渠收鴞� suffix ? 窸� | ||
| artifact_name: "winpe-iso-release" | ||
| retention_days: 30 | ||
| attach: | ||
| runs-on: ubuntu-latest | ||
| needs: [build] | ||
| steps: | ||
| - name: Download artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: ${{ needs.build.outputs.artifact_name }} | ||
| path: dist | ||
| - name: List files | ||
| shell: bash | ||
| run: | | ||
| ls -al dist | ||
| - name: Attach assets to GitHub Release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| # ?渠 ?溢 謔渠收鴞� 賱鴔 諈� (tag push ?渠略??篣域?) | ||
| tag_name: ${{ github.ref_name }} | ||
| # 謔渠收鴞?貐賈爰/?貲??build.yml???蛭 ?(窷) ???禹萼?� 穇渠�謔科? ?� | ||
| generate_release_notes: false | ||
| files: | | ||
| dist/*.iso | ||
| dist/SHA256SUMS | ||
| # ?域�諡?? ??魽國萼 ?欠(謔渠收鴞?? 諻拖?) | ||
| fail_on_unmatched_files: true | ||