Skip to content

release

release #14

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
deploy:
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 artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v6
with:
github_token: ${{secrets.TELEPORT_GENERIC_TOKEN}}
workflow: build_pc_client.yml
- name: Show
run: |
ls -R .
- name: Log
shell: cmd
run: |
git log -1 --pretty=%B>>release_notes.md
- name: Dotenv Action
uses: falti/[email protected]
with:
path: teleport_release.properties
log-variables: true
export-variables: true
- name: Create Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{secrets.TELEPORT_GENERIC_TOKEN}}
with:
body_path: release_notes.md
files: installer/*.exe
fail_on_unmatched_files: true