release #4
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: Release | |
on: | |
workflow_dispatch: | |
label: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: windows-2022 | |
timeout-minutes: 20 | |
env: | |
WORKFLOW_BUILD_TYPE: Release | |
WORKFLOW_VULKAN_DIR: D:/a/Teleport/Teleport/VULKAN_SDK | |
VULKAN_SDK: D:/a/Teleport/Teleport/VULKAN_SDK | |
VULKAN_SDK_DIR: D:/a/Teleport/Teleport/VULKAN_SDK | |
steps: | |
- name: Download a Build Artifact | |
uses: actions/[email protected] | |
with: | |
run_id: ${{ github.event.workflow_run.id }} | |
github-token: ${{secrets.TELEPORT_RELEASES_TOKEN}} | |
# Name of the artifact to download. If unspecified, all artifacts for the run are downloaded. | |
name: installer | |
# Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE | |
path: installer | |