Skip to content

Commit

Permalink
chore: set package version to 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ludndev committed Jul 17, 2024
1 parent a112c8b commit ef8146b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ env:
CARGO_TERM_COLOR: always
BINARY_NAME: "pwdgen"
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
WINGET_TOKEN: ${{ secrets.WINGET_TOKEN }}

jobs:
release:
Expand Down Expand Up @@ -85,3 +86,33 @@ jobs:

- name: Publish to Crates.io
run: cargo publish --token ${CRATES_TOKEN}

publish-debian:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Publish to
run: echo "publish_command"

publish-winget:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- uses: vedantmgoyal9/winget-releaser@main
with:
identifier: Package.Identifier
installers-regex: '\.exe$' # Only .exe files
token: ${{ env.WINGET_TOKEN }}
version: ${{ github.event.release.tag_name }}
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ideatopia-password_generator"
version = "1.0.3"
version = "1.0.4"
edition = "2021"
authors = ["ideatopia <https://githubcom/ideatopia>", "Judicael AHYI <https://githubcom/ludndev>"]
description = "Generates passwords with various complexities"
Expand Down

0 comments on commit ef8146b

Please sign in to comment.