-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #648 from ELENA-LANG/develop
Iteration21 (#647)
- Loading branch information
Showing
826 changed files
with
22,803 additions
and
196,943 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,8 @@ env: | |
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
BUILD_CONFIGURATION: Release | ||
|
||
BUILD_TAG: 6.0.9 | ||
|
||
permissions: | ||
contents: read | ||
|
||
|
@@ -38,6 +40,12 @@ jobs: | |
- name: Add MSBuild to PATH | ||
uses: microsoft/[email protected] | ||
|
||
- name: Setup Nuget | ||
uses: Nuget/[email protected] | ||
|
||
- name: Restore nuget packages | ||
run: nuget restore ${{env.SOLUTION_FILE_PATH}} | ||
|
||
- name: Build | ||
working-directory: ${{env.GITHUB_WORKSPACE}} | ||
# Add additional options to the MSBuild command line here (like platform or verbosity level). | ||
|
@@ -46,14 +54,14 @@ jobs: | |
|
||
- name: Compile Lib | ||
shell: cmd | ||
run: rebuild_lib60_${{matrix.platform}}.bat | ||
run: build\rebuild_lib60_${{matrix.platform}}.bat | ||
|
||
- name: Prepare Artifact | ||
shell: cmd | ||
run: install\build_package_${{matrix.platform}}.bat | ||
run: build\create_package_${{matrix.platform}}.bat | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: elena-lang-${{matrix.platform}}-${{ env.BUILD_TAG }} | ||
path: install\${{matrix.platform}} | ||
path: build\${{matrix.platform}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.0.8 | ||
6.0.9 |
Oops, something went wrong.