Skip to content

Commit aab4d40

Browse files
committed
Revert changes to non-LabKey workflows
1 parent f36c795 commit aab4d40

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
prerelease: true
2929
title: "Release "
3030
files: |
31-
/home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*
31+
/home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*

.github/workflows/build_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: "Build DISCVR"
2525
if: github.ref == '/refs/heads/${{ fromJson(steps.get_default_branch.outputs.data).default_branch }}'
26-
uses: bimberlabinternal/DevOps/githubActions/discvr-build@develop
26+
uses: bimberlabinternal/DevOps/githubActions/discvr-build@master
2727
with:
2828
artifactory_user: ${{secrets.artifactory_user}}
2929
artifactory_password: ${{secrets.artifactory_password}}
@@ -41,4 +41,4 @@ jobs:
4141
automatic_release_tag: "latest"
4242
prerelease: true
4343
title: "Development Build: ${{ fromJson(steps.get_default_branch.outputs.data).default_branch }}"
44-
files: /home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*
44+
files: /home/runner/work/_temp/_github_home/lkDist/discvr/DISCVR-*

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: "Build DISCVR"
15-
uses: bimberlabinternal/DevOps/githubActions/discvr-build@develop
15+
uses: bimberlabinternal/DevOps/githubActions/discvr-build@master
1616
with:
1717
artifactory_user: ${{secrets.artifactory_user}}
1818
artifactory_password: ${{secrets.artifactory_password}}
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Upload Artifacts
2525
if: github.event_name == 'release' && github.event.action == 'created'
26-
uses: skx/github-action-publish-binaries@develop
26+
uses: skx/github-action-publish-binaries@master
2727
env:
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
with:

.github/workflows/sync-repos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Designed to keep master branch as a perfect copy of LabKey fork
1+
# Designed to keep develop branch as a perfect copy of LabKey fork
22
name: Sync Repos
33

44
on:
@@ -19,14 +19,14 @@ jobs:
1919
destination_branch_prefix: "discvr-"
2020
# NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token
2121
github_token: ${{ secrets.PAT }}
22-
sync-master:
22+
sync-develop:
2323
if: github.repository == 'BimberLab/DiscvrLabKeyModules'
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: "Sync Develop Branch"
2727
uses: bimberlabinternal/DevOps/githubActions/git-sync@master
2828
with:
2929
source_repo: "labkey/DiscvrLabKeyModules"
30-
source_branch: "master"
31-
destination_branch: "master"
30+
source_branch: "develop"
31+
destination_branch: "develop"
3232
github_token: ${{ secrets.PAT }}

0 commit comments

Comments
 (0)