Skip to content

Commit

Permalink
Rename and fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdicloud committed Aug 9, 2023
1 parent 47052e0 commit 0b7950b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ on:
required: true
type: number
outputs:
appname: ${{ steps.appname.result }}
appversion: ${{ steps.appversion.result }}
tag: nmc${{ steps.appversion.result }}-${{ inputs.increment }}
appname: ${{ jobs.appcheck.steps.appname.result }}
appversion: ${{ jobs.appcheck.steps.appversion.result }}
tag: nmc${{ jobs.appcheck.steps.appversion.result }}-${{ inputs.increment }}

jobs:
build-custom:
appcheck:
runs-on: ubuntu-latest
env:
BUILD_TOKEN: ${{ secrets.BUILD_TOKEN || secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -70,4 +70,5 @@ jobs:
core.setFailed(`Release tags/${releaseTag} already exists!`);
} catch (error) {
// expect release to be not found
// let's proceed build
}

0 comments on commit 0b7950b

Please sign in to comment.