Skip to content

Commit

Permalink
Changing naming conventions
Browse files Browse the repository at this point in the history
(yet again to be more accurate to what is actually happening)
  • Loading branch information
MarmadileManteater committed Jun 3, 2022
1 parent 0df3e68 commit e93e2ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildCordova.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build

on:
push:
branches: [ master, '**-RC' ]
branches: [ development, '**-RC' ]

jobs:
build:
Expand Down Expand Up @@ -37,10 +37,10 @@ jobs:
id: versionNumber
uses: actions/github-script@v3
env:
IS_DEV: ${{ contains(github.ref, 'master') }}
IS_DEV: ${{ contains(github.ref, 'development') }}
IS_RC: ${{ contains(github.ref, 'release') }}
VERSION_NUMBER_NIGHTLY: ${{ env.PACKAGE_VERSION }}-nightly-${{ github.run_number }}
VERSION_NUMBER_RC: ${{ env.PACKAGE_VERSION }}-release-${{ github.run_number }}
VERSION_NUMBER_NIGHTLY: ${{ env.PACKAGE_VERSION }}-development-${{ github.run_number }}
VERSION_NUMBER_RC: ${{ env.PACKAGE_VERSION }}-nightly-${{ github.run_number }}
VERSION_NUMBER: ${{ env.PACKAGE_VERSION }}
with:
result-encoding: string
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releaseCordova.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
env:
IS_DEV: ${{ contains(github.ref, 'master') }}
IS_RC: ${{ contains(github.ref, 'release') }}
VERSION_NUMBER_NIGHTLY: ${{ env.PACKAGE_VERSION }}-nightly-${{ github.run_number }}
VERSION_NUMBER_RC: ${{ env.PACKAGE_VERSION }}-release-${{ github.run_number }}
VERSION_NUMBER_NIGHTLY: ${{ env.PACKAGE_VERSION }}-development-${{ github.run_number }}
VERSION_NUMBER_RC: ${{ env.PACKAGE_VERSION }}-nightly-${{ github.run_number }}
VERSION_NUMBER: ${{ env.PACKAGE_VERSION }}
with:
result-encoding: string
Expand Down

0 comments on commit e93e2ff

Please sign in to comment.