Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
RCMast3r committed Feb 5, 2024
1 parent 242653f commit 3827e08
Showing 1 changed file with 19 additions and 21 deletions.
40 changes: 19 additions & 21 deletions .github/workflows/release_lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,26 +46,24 @@ jobs:
mkdir -p /out
cd /app
./build/coderdbc -rw -dbc /dbc/hytech.dbc -out /out -drvname hytech
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.run_number }}
release_name: Release ${{ github.run_number }}
draft: false
prerelease: false

# # - name: Create Release
# # id: create_release
# # uses: actions/create-release@v1
# # env:
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# # with:
# # tag_name: ${{ github.run_number }}
# # release_name: Release ${{ github.run_number }}
# # draft: false
# # prerelease: false

# # - name: Upload release asset
# # uses: actions/upload-release-asset@v1
# # env:
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# # with:
# # upload_url: ${{ steps.create_release.outputs.upload_url }}
# # asset_path: /out
# # asset_name: can_lib.zip
# # asset_content_type: application/zip
- name: Upload release asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: /out
asset_name: can_lib.zip
asset_content_type: application/zip

0 comments on commit 3827e08

Please sign in to comment.