Skip to content

Commit

Permalink
Update build-and-release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielLMcGuire authored Jul 24, 2024
1 parent 62a2838 commit 5a17487
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Compiler
uses: rlalik/setup-cpp-compiler@master
with:
compiler: latest # Use the latest version of g++

- name: Build
run: |
g++ -o YT-Compression.exe src/YTCompression.cpp
Expand All @@ -27,10 +22,10 @@ jobs:
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MY_APP_VERSION: ${{ env.MY_APP_VERSION }}
MY_APP_VERSION: ${{ vars.MY_APP_VERSION }}
with:
tag_name: ${{ env.MY_APP_VERSION }}
release_name: Release ${{ env.MY_APP_VERSION }}
tag_name: ${{ var.MY_APP_VERSION }}
release_name: Release ${{ var.MY_APP_VERSION }}
body: Automated Release
draft: false
prerelease: false

0 comments on commit 5a17487

Please sign in to comment.