Skip to content

Commit

Permalink
updated 0.5.552
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyaven committed Dec 28, 2023
1 parent c3c5c07 commit 087c528
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/chocolatey-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,33 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

# - name: Extract Version from .nuspec
# id: set_version
# run: |
# $xml = [xml](Get-Content stackql/stackql.nuspec)
# $version = $xml.package.metadata.version
# echo "VERSION=$version" >> $GITHUB_ENV

- name: Extract Version from .nuspec
id: set_version
run: |
$xml = [xml](Get-Content stackql/stackql.nuspec)
$version = $xml.package.metadata.version
echo "Extracted version: $version"
echo "VERSION=$version" >> $GITHUB_ENV
shell: pwsh

# - name: Create Chocolatey Package
# run: |
# echo "creating package for version $env:VERSION"
# cd stackql
# choco pack

- name: Create Chocolatey Package
run: |
echo "creating package for version $env:VERSION"
cd stackql
choco pack
shell: pwsh

- name: Install and Test Chocolatey Package
run: choco install stackql --source . -y
Expand Down

0 comments on commit 087c528

Please sign in to comment.