Skip to content

Commit

Permalink
Fix workflows/release
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyutarow committed Apr 25, 2021
1 parent 1fe42c5 commit 90d3c4b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 18 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Dispatch homebrew Repository update
if: matrix.os == 'ubuntu-latest'
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.HOMEBREW_REPO_GITHUB_TOKEN }}
Expand Down
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 = "version-make"
version = "0.202104.11"
version = "0.202104.12"
authors = ["fuyutarow <[email protected]>"]
edition = "2018"

Expand Down
6 changes: 1 addition & 5 deletions src/lib/mod.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
use regex;
use semver::Version;
use serde_derive::{Deserialize, Serialize};
use std::ffi::OsStr;
use std::fs;
use std::fs::File;
use std::io::prelude::*;
use std::path::{Path, PathBuf};
use structopt::StructOpt;
use toml::Value as Toml;
use std::path::PathBuf;

pub trait Semver {
fn up_major(self, n: u64) -> Self;
Expand Down
11 changes: 1 addition & 10 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
use regex;
use semver::Version;
use serde_derive::{Deserialize, Serialize};
use std::ffi::OsStr;
use std::fs;
use std::fs::File;
use std::io::prelude::*;
use std::path::{Path, PathBuf};
use std::path::PathBuf;
use structopt::StructOpt;
use toml::Value as Toml;

mod lib;
use lib::Manager;
Expand Down Expand Up @@ -93,6 +85,5 @@ fn main() {
manager.print();
}
}
_ => {}
}
}

0 comments on commit 90d3c4b

Please sign in to comment.