Skip to content

Commit

Permalink
reverted and fixed .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegZee committed Feb 22, 2024
1 parent c69003c commit 815a48a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: csharp
mono: latest
dotnet: 7.0.202
env: VER=$(if [[ "${TRAVIS_TAG:0:1}" == "v" ]]; then echo ${TRAVIS_TAG:1}.${TRAVIS_BUILD_NUMBER}; else echo 1.0.0.${TRAVIS_BUILD_NUMBER}; fi;)
script:
- dotnet fsi build.fsx -- -- build test -ll Diag
deploy:
- provider: script
script: dotnet fsi build.fsx -- -- pack push -ll Diag
skip_cleanup: true
on:
tags: true
condition: "${TRAVIS_TAG:0:1} = v"

0 comments on commit 815a48a

Please sign in to comment.