Skip to content

Commit

Permalink
release: v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Schaaf committed Dec 5, 2024
1 parent 901dff0 commit 5728fcd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 17 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags:
- "v*.*.*"
pull_request:
tags:
tags:
- "v*.*.*"
workflow_dispatch:

Expand All @@ -26,18 +26,25 @@ jobs:
toolchain: nightly
default: true
override: true
- name: Build binary
run: cargo build --release
- name: Archive

- name: Build binary w/o GUI
run: cargo build --release --no-default-features

- name: Archive w/o GUI
run: cp target/release/gazetteer . && zip -r gazetteer-rs.${{ github.ref_name }}-bin.zip resources/ config.toml gazetteer LICENSE


- name: Build binary w/GUI
run: cargo build --release --features gui

- name: Archive wGUI
run: cp target/release/gazetteer . && zip -r gazetteer-rs.${{ github.ref_name }}-gui-bin.zip resources/ config.toml gazetteer LICENSE

- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
gazetteer-rs.${{ github.ref_name }}-bin.zip
gazetteer-rs.${{ github.ref_name }}-gui-bin.zip
gazetteer
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gazetteer"
version = "1.6.0"
version = "1.6.1"
edition = "2021"

[dependencies]
Expand Down
9 changes: 0 additions & 9 deletions Rocket.toml

This file was deleted.

0 comments on commit 5728fcd

Please sign in to comment.