diff --git a/.github/workflows/nightlyPublish.yml b/.github/workflows/nightlyPublish.yml
index 6a9cb28..88e9770 100644
--- a/.github/workflows/nightlyPublish.yml
+++ b/.github/workflows/nightlyPublish.yml
@@ -65,7 +65,7 @@ jobs:
const branch = await github.rest.repos.getBranch({
owner: 'ExpressLRS',
repo: 'ExpressLRS-Configurator',
- branch: 'cloudbuilds',
+ branch: 'master',
});
console.log(branch);
@@ -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.
${messages.join('
')}
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.
${messages.join('
')}
Latest commit hash: "${latestCommitHash}"`;
/* write the release message to a file */
require('fs').writeFileSync('releaseMessage.md', releaseMessage);
@@ -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