Draft Release #77
This file contains 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: Draft Release | |
concurrency: draft-release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "Version number" | |
required: true | |
type: string | |
jobs: | |
draft: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fetch the latest llvm-mos-sdk prerelease. | |
run: | | |
curl -ZLO "https://github.com/llvm-mos/llvm-mos-sdk/releases/download/prerelease/{llvm-mos-linux.tar.xz,llvm-mos-macos.tar.xz,llvm-mos-windows.7z}" | |
- name: Draft the SDK release. | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: SDK v${{github.event.inputs.version}} | |
body: "TODO: Write description." | |
tag_name: v${{github.event.inputs.version}} | |
files: | | |
llvm-mos-linux.tar.xz | |
llvm-mos-windows.7z | |
llvm-mos-macos.tar.xz | |
draft: true |