Projects STRLCPY s3reverse Commits a72cbb75
🤬
  • ■ ■ ■ ■ ■ ■
    .goreleaser.yml
     1 +project_name: s3reverse
     2 + 
     3 +before:
     4 + hooks:
     5 + - go mod download
     6 + 
     7 +builds:
     8 + -
     9 + main: .
     10 + binary: s3reverse
     11 + goos:
     12 + - windows
     13 + - linux
     14 + - darwin
     15 + - freebsd
     16 + goarch:
     17 + - amd64
     18 + - 386
     19 + ignore:
     20 + - goos: darwin
     21 + goarch: 386
     22 + - goos: darwin
     23 + goarch: arm
     24 + - goos: darwin
     25 + goarch: arm64
     26 + - goos: windows
     27 + goarch: 386
     28 + - goos: windows
     29 + goarch: arm
     30 + - goos: windows
     31 + goarch: arm64
     32 + - goos: freebsd
     33 + goarch: arm
     34 + 
     35 +checksum:
     36 + name_template: "{{ .ProjectName }}_checksums.txt"
     37 + 
     38 +changelog:
     39 + sort: desc
     40 + filters:
     41 + exclude:
     42 + - '^MERGE'
     43 + - "{{ .Tag }}"
     44 + 
     45 +release:
     46 + github:
     47 + owner: hahwul
     48 + name: s3reverse
     49 + 
     50 +brews:
     51 + -
     52 + name: s3reverse
     53 + tap:
     54 + owner: hahwul
     55 + name: homebrew-s3reverse
     56 + url_template: "https://github.com/hahwul/dalfox/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
     57 + commit_author:
     58 + name: hahwul
     59 + email: [email protected]
     60 + folder: Formula
     61 + homepage: "https://www.hahwul.com"
     62 + description: "The format of various s3 buckets is convert in one format. for bugbounty and security testing."
     63 + test: |
     64 + system "#{bin}/s3reverse"
     65 + install: |
     66 + bin.install "s3reverse"
     67 +snapcrafts:
     68 + -
     69 + name: s3reverse
     70 + # Remember you need to `snapcraft login` first.
     71 + publish: true
     72 + summary: The format of various s3 buckets is convert in one format. for bugbounty and security testing.
     73 + description: The format of various s3 buckets is convert in one format. for bugbounty and security testing.
     74 + grade: stable
     75 + confinement: strict
     76 + license: MIT
     77 + 
Please wait...
Page is in error, reload to recover