ci: continue test env

This commit is contained in:
itsmattkc
2020-09-16 16:47:42 +10:00
committed by GitHub
parent 005a725fc9
commit dbc9395410
+5 -11
View File
@@ -20,15 +20,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set selected color
run: echo '::set-env name=SELECTED_COLOR::green'
- name: Get color (cmd)
shell: cmd
run: echo 'The selected color is' $SELECTED_COLOR
- name: Generate Package Name
id: vars
run: echo '::set-env name=PKGNAME::Olive-$(git rev-parse --short=8 ${{github.sha}})-Windows-x86_64'
- name: Get color (cmd 2)
- name: Test package name
shell: cmd
run: echo 'The selected color is' %SELECTED_COLOR%
run: echo 'Package name is' %PKGNAME%
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
@@ -100,10 +98,6 @@ jobs:
working-directory: ${{runner.workspace}}/build
shell: cmd
run: mkdir olive-editor && copy app\olive-editor.exe olive-editor && copy app\olive-editor.pdb olive-editor && windeployqt olive-editor\olive-editor.exe && copy %GITHUB_WORKSPACE%\bin\*.dll olive-editor && copy %GITHUB_WORKSPACE%\out\Default\crashpad_handler.exe olive-editor
- name: Generate Package Name
id: vars
run: echo ::set-env name=PKGNAME::Olive-$(git rev-parse --short=8 ${{github.sha}})-Windows-x86_64
- name: Deploy Installer
working-directory: ${{runner.workspace}}/build