mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
avoid using set-env in continuous integration workflow
Error: Unable to process command '::set-env name=PROJECT_NAME_LOWER::gzdoom' successfully. Error: The `set-env` command is disabled. Please upgrade to using Environment Files or opt into unsecure command execution by setting the `ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable to `true`. For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
This commit is contained in:
parent
d04d4cc55e
commit
8baeb4e5c1
1 changed files with 2 additions and 4 deletions
6
.github/workflows/continuous_integration.yml
vendored
6
.github/workflows/continuous_integration.yml
vendored
|
@ -25,17 +25,15 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
echo "::set-env name=PROJECT_NAME_LOWER::$(echo ${{ matrix.config.name }} | tr '[:upper:]' '[:lower:]')"
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
PROJECT_NAME_LOWER=$(echo ${{ matrix.config.name }} | tr '[:upper:]' '[:lower:]')
|
||||
./build.py --target ${PROJECT_NAME_LOWER}
|
||||
|
||||
- name: Create Package
|
||||
shell: bash
|
||||
run: |
|
||||
PROJECT_NAME_LOWER=$(echo ${{ matrix.config.name }} | tr '[:upper:]' '[:lower:]')
|
||||
if [ -z ${{ matrix.config.bundle }} ]; then
|
||||
BUNDLE_FILENAME=${PROJECT_NAME_LOWER}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue