Skip to content

Bump version: 1.0.0 → 1.0.0 #20

Bump version: 1.0.0 → 1.0.0

Bump version: 1.0.0 → 1.0.0 #20

Workflow file for this run

name: Windows Installers Creation and Publication
on:
push:
branches:
- main
tags:
- 'v*.*.*'
jobs:
create-windows-installers:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build Windows Installers
run: .\build.bat
shell: cmd
- name: Upload installers as artifact
uses: actions/upload-artifact@v4
with:
name: fzf-win installers
path: build/**/*.msi
- name: Publish as Release
uses: softprops/action-gh-release@v1
with:
# NOTE why does github token not work?
token: ${{ secrets.ACTIONS_TOKEN }}
tag_name: 'v1.0.0'
name: 'fzf-win v1.0.0'
files: build/**/*.msi
body: |
This is a pre-release of fzf-win
It may contain bugs and is not recommended for production use.
To report bugs, please report them [here](https://github.com/joacortez/fzf-win/issues/new) or send an email to [[email protected]](mailto:[email protected])
draft: false
prerelease: true