Skip to content

Commit

Permalink
Update deployer.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Caden Marinozzi authored Feb 8, 2024
1 parent 9a9a40d commit 8603a0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployer/src/deployer.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ glob('../../**/deploy-config.json', (err, files) => {
async function deploymentLoop() {
try {
const commits = await axios.get(
'https://api.github.com/repos/nekumelon/CodeXR/commits'
'https://api.github.com/repos/cadenmarinozzi/CodeXR/commits'
);
const sha = commits.data[0].sha;

if (lastSha && sha !== lastSha) {
const commit = await axios.get(
`https://api.github.com/repos/nekumelon/CodeXR/commits/${sha}`
`https://api.github.com/repos/cadenmarinozzi/CodeXR/commits/${sha}`
);

glob('../../**/deploy-config.json', (err, files) => {
Expand Down

0 comments on commit 8603a0f

Please sign in to comment.