-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d2d4ec
commit 72cabf7
Showing
3 changed files
with
46 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Update Build Number | ||
run-name: ${{ github.actor }} is updating the build version 🛠️ | ||
on: | ||
pull_request: | ||
types: [ labeled ] | ||
jobs: | ||
Update-Build-Number: | ||
if: github.event.label.name == 'Ready for Testing' | ||
runs-on: ubuntu-latest | ||
# defaults: | ||
# run: | ||
# working-directory: ./PlaybookSwift | ||
env: | ||
# Set an environment variable for the branch name | ||
BRANCH_NAME: ${{ github.head_ref }} | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
- name: Set Git Config | ||
run: | | ||
git config --local user.name "${{ github.actor }}" | ||
git config --local user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: Get Build Number | ||
run: | | ||
git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git . | ||
echo $(ls nitro-buildnumber) | ||
"666" >> ./buildNumber.txt | ||
echo $(cat ./buildNumber.txt) | ||
# - name: Leave PR comment | ||
# env: | ||
# PR_NUMBER: ${{ github.event.pull_request.number }} | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# RUBY_GEM_VERSION: ${{ env.new_ruby_alpha_version }} | ||
# RUBY_GEM_LINK: https://rubygems.org/gems/playbook_ui/versions/${{env.new_ruby_alpha_version}} | ||
# NPM_VERSION: ${{ env.new_npm_alpha_version }} | ||
# NPM_LINK: https://www.npmjs.com/package/playbook-ui/v/${{env.new_npm_alpha_version}} | ||
# run: | | ||
# curl -H "Authorization: token ${GITHUB_TOKEN}" \ | ||
# -X POST \ | ||
# -d '{"body": "🎉 Congratulations on creating an Alpha Version! \n\n Your Alpha for Ruby Gems is [${{env.RUBY_GEM_VERSION}}](${{env.RUBY_GEM_LINK}}) \n\n Your Alpha for NPM is [${{env.NPM_VERSION}}](${{env.NPM_LINK}}) "}' \ | ||
# "https://api.github.com/repos/${{ github.repository }}/issues/${PR_NUMBER}/comments" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,13 +16,8 @@ def steps = [ | |
runNode { | ||
getReleaseNotes() | ||
def args = "type:${buildType()}" | ||
// prepareToBuild(buildType()) | ||
buildAndShipiOS(args) | ||
} | ||
// }, 'macOS': { | ||
// runNode { | ||
// buildAndShipMacOS(args) | ||
// } | ||
} | ||
] | ||
def map = steps | ||
|
@@ -332,8 +327,9 @@ def updateBuildNumber() { | |
// clone repo | ||
dir('.buildnumber') { | ||
try { | ||
sh 'git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git .' | ||
buildNumber = sh(returnStdout: true, script: './increment PlaybookSwift-version').trim().toInteger() | ||
// sh 'git clone --depth 5 [email protected]:powerhome/nitro-buildnumber.git .' | ||
// buildNumber = sh(returnStdout: true, script: './increment PlaybookSwift-version').trim().toInteger() | ||
buildNumber = 666 | ||
print "Build number: ${buildNumber}" | ||
} | ||
finally { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters