This commit is contained in:
AB
2020-06-05 23:24:03 +03:00
parent 3f8ec11f95
commit e230cf0662
2 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,7 @@ jobs:
wget https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2 wget https://github.com/aktau/github-release/releases/download/v0.7.2/linux-amd64-github-release.tar.bz2
tar xjf linux-amd64-github-release.tar.bz2 tar xjf linux-amd64-github-release.tar.bz2
export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name furumi_${{ steps.get_version.outputs.VERSION }}_amd64.deb --file ./furumi_amd64.deb # ./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name furumi_${{ steps.get_version.outputs.VERSION }}_amd64.deb --file ./furumi_amd64.deb
./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name arch_linux_furumi-${{ steps.get_version.outputs.VERSION }}-x86_64.pkg.tar.zst --file ./furumi-x86_64.pkg.tar.zst ./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name arch_linux_furumi-${{ steps.get_version.outputs.VERSION }}-x86_64.pkg.tar.zst --file ./furumi-x86_64.pkg.tar.zst
./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name furumi-${{ steps.get_version.outputs.VERSION }} --file ./furumi ./bin/linux/amd64/github-release upload -u house-of-vanity -r furumi --tag ${{ steps.get_version.outputs.FULL_TAG }} --name furumi-${{ steps.get_version.outputs.VERSION }} --file ./furumi

View File

@ -24,6 +24,7 @@ pub fn read() -> Config {
.short("c") .short("c")
.long("conf") .long("conf")
.help("Config file to use") .help("Config file to use")
.default_value("/etc/furumi.yml")
.takes_value(true) .takes_value(true)
.required(true), .required(true),
) )