Skip to content

Commit

Permalink
Apparently appveyor doesn't like environment variables with dashes in…
Browse files Browse the repository at this point in the history
… the name (like I said, a million little commits...)
  • Loading branch information
kromenak committed Dec 23, 2021
1 parent 7deaa9d commit 90c332c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
####

environment:
app-version: 0.0.2
APP_VERSION: 0.0.2

# Appveyor build version equals app's version number, but with an added (patch) value.
# Ex: if app version is "0.0.1", Appveyor's version might be "0.0.1.9".
version: $(app-version)-{build}
version: $(APP_VERSION)-{build}

# The goal is to build and deploy occasional release milestones to GitHub.
# Rather than building every commit to master, we'll only build when merging into release branch.
Expand Down Expand Up @@ -105,8 +105,8 @@ artifacts:
deploy:
- provider: GitHub
artifact: Game
release: 'v$(app-version)'
description: 'GEngine version $(app-version) for Mac and Windows'
release: 'v$(APP_VERSION)'
description: 'GEngine version $(APP_VERSION) for Mac and Windows'
force_update: true # allows multiple jobs to upload artifacts to same GitHub release
auth_token:
secure: DuQUXjm31E4YjETAHvTdtMj9VbrNVTId39ObmB95ZXXU7oJz8j4ChuF+S4hnC7Qw
Expand Down

0 comments on commit 90c332c

Please sign in to comment.