fix: update workaround element to div #1
Workflow file for this run
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
name: Create Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install cross-compiler | |
run: sudo apt install gcc-mingw-w64-x86-64 | |
- name: Install V | |
run: | | |
git clone --depth=1 https://github.com/vlang/v | |
cd v | |
make | |
sudo ./v symlink | |
v up | |
- name: Build the project | |
run: v run build.vsh | |
- name: Generate Release Notes | |
id: generate_release_notes | |
run: | | |
npm install -g release-notes-generator | |
release-notes-generator --tag ${{ github.ref }} --output release_notes.md | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ github.ref }} | |
name: ${{ github.ref_name }} | |
body_path: release_notes.md | |
draft: false | |
prerelease: false | |
files: | | |
./rr-dl_linux_amd64 # Linux | |
./rr-dl.exe # Windows | |
release_notes.md |