mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
b6f60f7c1c
6 changed files with 29 additions and 6 deletions
11
.github/dependabot.yml
vendored
Normal file
11
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "gomod" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "daily"
|
5
.github/workflows/release-bsd.yml
vendored
5
.github/workflows/release-bsd.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Go
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
|
@ -14,7 +15,7 @@ jobs:
|
|||
goarch: ["386", amd64, arm, arm64]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: wangyoucao577/go-release-action@v1.15
|
||||
- uses: wangyoucao577/go-release-action@v1.20
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: ${{ matrix.goos }}
|
||||
|
@ -23,3 +24,5 @@ jobs:
|
|||
extra_files: LICENSE README.md
|
||||
sha256sum: true
|
||||
md5sum: false
|
||||
ldflags: '-s -w'
|
||||
project_path: ./cmd/apg/
|
||||
|
|
7
.github/workflows/release-darwin.yml
vendored
7
.github/workflows/release-darwin.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Go
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
|
@ -11,10 +12,10 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
goos: [darwin]
|
||||
goarch: ["386", amd64]
|
||||
goarch: [amd64, arm64]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: wangyoucao577/go-release-action@v1.15
|
||||
- uses: wangyoucao577/go-release-action@v1.20
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: ${{ matrix.goos }}
|
||||
|
@ -23,3 +24,5 @@ jobs:
|
|||
extra_files: LICENSE README.md
|
||||
sha256sum: true
|
||||
md5sum: false
|
||||
ldflags: '-s -w'
|
||||
project_path: ./cmd/apg/
|
||||
|
|
5
.github/workflows/release-linux.yml
vendored
5
.github/workflows/release-linux.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Go
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
|
@ -14,7 +15,7 @@ jobs:
|
|||
goarch: ["386", amd64, arm, arm64, ppc64le, s390x]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: wangyoucao577/go-release-action@v1.15
|
||||
- uses: wangyoucao577/go-release-action@v1.20
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: ${{ matrix.goos }}
|
||||
|
@ -23,3 +24,5 @@ jobs:
|
|||
extra_files: LICENSE README.md
|
||||
sha256sum: true
|
||||
md5sum: false
|
||||
ldflags: '-s -w'
|
||||
project_path: ./cmd/apg/
|
||||
|
|
5
.github/workflows/release-windows.yml
vendored
5
.github/workflows/release-windows.yml
vendored
|
@ -1,6 +1,7 @@
|
|||
name: Go
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
release:
|
||||
types: [ created ]
|
||||
|
||||
|
@ -14,7 +15,7 @@ jobs:
|
|||
goarch: ["386", amd64, arm]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: wangyoucao577/go-release-action@v1.15
|
||||
- uses: wangyoucao577/go-release-action@v1.20
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
goos: ${{ matrix.goos }}
|
||||
|
@ -23,3 +24,5 @@ jobs:
|
|||
extra_files: LICENSE README.md
|
||||
sha256sum: true
|
||||
md5sum: false
|
||||
ldflags: '-s -w'
|
||||
project_path: ./cmd/apg/
|
||||
|
|
|
@ -15,7 +15,7 @@ import (
|
|||
)
|
||||
|
||||
// VersionString represents the current version of the apg-go CLI
|
||||
const VersionString string = "0.4.0"
|
||||
const VersionString string = "0.4.0-rc1"
|
||||
|
||||
// Help text
|
||||
const usage = `apg-go // A "Automated Password Generator"-clone
|
||||
|
|
Loading…
Reference in a new issue