Skip to content

Commit

Permalink
Build from master
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelenas committed Jun 10, 2023
1 parent 263f93a commit 1cdf4da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightlyPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
const branch = await github.rest.repos.getBranch({
owner: 'ExpressLRS',
repo: 'ExpressLRS-Configurator',
branch: 'cloudbuilds',
branch: 'master',
});
console.log(branch);
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
}
const releaseMessage =
`This is a nightly build from the cloudbuilds branch, it may be unstable and should only be used for testing purposes.<br/><br/>${messages.join('<br/>')}<br/><br/>Latest commit hash: "${latestCommitHash}"`;
`This is a nightly build from the master branch, it may be unstable and should only be used for testing purposes.<br/><br/>${messages.join('<br/>')}<br/><br/>Latest commit hash: "${latestCommitHash}"`;
/* write the release message to a file */
require('fs').writeFileSync('releaseMessage.md', releaseMessage);
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: 'ExpressLRS/ExpressLRS-Configurator'
ref: 'cloudbuilds'
ref: 'master'

- name: Checkout git repo
uses: actions/checkout@v3
Expand Down

0 comments on commit 1cdf4da

Please sign in to comment.