Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Workflows #4

Merged
merged 29 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
82e3aaa
Default to false for debug mode
jacobsen9026 Feb 20, 2023
ea4a3d3
Merge pull request #3 from Blazam-App/Beta-Stable
jacobsen9026 Feb 20, 2023
b7eb49d
Fix for missing release version
jacobsen9026 Feb 20, 2023
08076f6
Fix for wrong dll path for version reference
jacobsen9026 Feb 20, 2023
67e3329
Run builds on dev machine
jacobsen9026 Feb 20, 2023
1203d5b
Don't install .Net on dev machine
jacobsen9026 Feb 20, 2023
795ab0e
OK Run on hosted
jacobsen9026 Feb 20, 2023
6360486
Attempt to inject version variable
jacobsen9026 Feb 20, 2023
b42bcc1
Fix for incorrect variable names for version injection
jacobsen9026 Feb 20, 2023
150e824
Try self hosteed again
jacobsen9026 Feb 20, 2023
6b96921
Versioning attempt
jacobsen9026 Feb 20, 2023
2086651
another versioning attempt
jacobsen9026 Feb 20, 2023
9724aa4
yet another attempt
jacobsen9026 Feb 20, 2023
6065cd3
ateempt
jacobsen9026 Feb 20, 2023
19a1df9
env variable
jacobsen9026 Feb 20, 2023
97394ba
nother
jacobsen9026 Feb 20, 2023
e3ab8c9
test
jacobsen9026 Feb 20, 2023
31ab326
test
jacobsen9026 Feb 20, 2023
61f7624
Rename zip
jacobsen9026 Feb 20, 2023
e38d8e5
Rename output zips to include branch name
jacobsen9026 Feb 20, 2023
79824f2
Name release with branch, actually make release
jacobsen9026 Feb 20, 2023
74f28ef
Release config changed
jacobsen9026 Feb 20, 2023
16ea159
Fix typ in compress file name
jacobsen9026 Feb 20, 2023
faa7086
Caching?
jacobsen9026 Feb 20, 2023
0f7f91b
Caching?
jacobsen9026 Feb 20, 2023
9319829
Fix for duplicating repo names
jacobsen9026 Feb 20, 2023
f73946f
Update beta-stable_blazam.yml
jacobsen9026 Feb 20, 2023
ddd6919
Merge branch 'Beta-Nightly' of https://github.com/Blazam-App/BLAZAM i…
jacobsen9026 Feb 20, 2023
5dcf9ec
Fix Tag name
jacobsen9026 Feb 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typ in compress file name
  • Loading branch information
jacobsen9026 committed Feb 20, 2023
commit 16ea159e268939d1e974af413a490b8245554cd1
2 changes: 1 addition & 1 deletion .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Show Version
run: echo $env.ASSEMBLY_VERSION
- name: Compress files
run: Compress-Archive -Path bin\Publish\* -DestinationPath blazam-stable-v${{ env.ASSEMBLY_VERSION }}.zip
run: Compress-Archive -Path bin\Publish\* -DestinationPath blazam-nightly-v${{ env.ASSEMBLY_VERSION }}.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Show Version
run: echo $env.ASSEMBLY_VERSION
- name: Compress files
run: Compress-Archive -Path bin\Publish\* -DestinationPath blazam-nightly-v${{ env.ASSEMBLY_VERSION }}.zip
run: Compress-Archive -Path bin\Publish\* -DestinationPath blazam-stable-v${{ env.ASSEMBLY_VERSION }}.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down