-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 7.0.4xx FCS versions (#1151)
Co-authored-by: Maxime Mangel <[email protected]> Co-authored-by: github-actions <[email protected]> Co-authored-by: Maxime Mangel <[email protected]> Co-authored-by: Florian Verdonck <[email protected]> Co-authored-by: dawe <[email protected]>
- Loading branch information
1 parent
f5d82b2
commit 452411b
Showing
27 changed files
with
1,085 additions
and
692 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Build and pack nightly | ||
|
||
on: | ||
push: | ||
branches: | ||
- nightly | ||
|
||
env: | ||
BuildNet7: true | ||
|
||
jobs: | ||
pack-nightly: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Get date for version | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y%m%d%H%M')" | ||
# setup .NET per the repo global.json | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v2 | ||
|
||
- name: Restore tools | ||
run: dotnet tool restore | ||
|
||
- name: Run Build | ||
run: dotnet run --project build -t Release | ||
env: | ||
VersionSuffix: "beta${{ steps.date.outputs.date }}" | ||
|
||
- name: Push packages | ||
run: dotnet nuget push bin/pkgs/fsautocomplete.*.nupkg --source https://nuget.pkg.github.com/fsharp/index.json --api-key ${{ secrets.GITHUB_TOKEN }} |
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,23 +1,23 @@ | ||
{ | ||
"FSharp.excludeProjectDirectories": [ | ||
".git", | ||
"paket-files", | ||
"packages", | ||
"test/FsAutoComplete.IntegrationTests" | ||
], | ||
//otherwise take a lot of time to load proj inside | ||
//the test directories | ||
"omnisharp.autoStart": false, | ||
"FSharp.minimizeBackgroundParsing": true, | ||
"FSharp.trace.server": "verbose", | ||
"yaml.schemas": { | ||
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json": ".github/workflows/*" | ||
}, | ||
"editor.inlayHints.enabled": "offUnlessPressed", | ||
"FSharp.enableAdaptiveLspServer": true, | ||
"files.associations": { | ||
"*.*proj": "msbuild", | ||
"*.props": "msbuild", | ||
"*.targets": "msbuild" | ||
} | ||
} | ||
"FSharp.excludeProjectDirectories": [ | ||
".git", | ||
"paket-files", | ||
"packages", | ||
"test/FsAutoComplete.IntegrationTests" | ||
], | ||
//otherwise take a lot of time to load proj inside | ||
//the test directories | ||
"omnisharp.autoStart": false, | ||
"FSharp.minimizeBackgroundParsing": true, | ||
"FSharp.trace.server": "off", | ||
"yaml.schemas": { | ||
"https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/github-workflow.json": ".github/workflows/*" | ||
}, | ||
"editor.inlayHints.enabled": "offUnlessPressed", | ||
"FSharp.enableAdaptiveLspServer": true, | ||
"files.associations": { | ||
"*.*proj": "msbuild", | ||
"*.props": "msbuild", | ||
"*.targets": "msbuild" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Project> | ||
|
||
<Target Name="SupportPrereleaseVersion" | ||
AfterTargets="SetVersionFromChangelog"> | ||
<PropertyGroup Condition="'$(VersionSuffix)' != ''"> | ||
<Version>$(Version)-$(VersionSuffix)</Version> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
</PropertyGroup> | ||
</Target> | ||
|
||
|
||
</Project> |
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
Oops, something went wrong.