Skip to content

Commit 5ac4bd9

Browse files
committed
Add initial set of files for the first Open-Source version of the Symfony CLI
0 parents  commit 5ac4bd9

File tree

203 files changed

+33581
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+33581
-0
lines changed

.github/workflows/releaser.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: Release
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
releaser:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
steps:
15+
-
16+
name: Checkout
17+
uses: actions/checkout@v2
18+
with:
19+
fetch-depth: 0
20+
-
21+
name: Set up Go
22+
uses: actions/setup-go@v2
23+
with:
24+
go-version: 1.17
25+
-
26+
name: Set AUTOUPDATE_CHANNEL on tags
27+
run: echo "AUTOUPDATE_CHANNEL=stable" >> $GITHUB_ENV
28+
if: startsWith(github.ref, 'refs/tags/v')
29+
-
30+
name: Prepare
31+
run: go generate ./cmd/
32+
-
33+
name: Test
34+
run: go test -v ./...
35+
-
36+
name: Run GoReleaser
37+
uses: goreleaser/goreleaser-action@v2
38+
with:
39+
version: latest
40+
args: release --rm-dist
41+
env:
42+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
-
44+
name: Archive binaries
45+
uses: actions/upload-artifact@v2
46+
with:
47+
retention-days: 5
48+
path: dist

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/vendor

.goreleaser.yml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
before:
2+
hooks:
3+
- go mod download
4+
5+
changelog:
6+
sort: desc
7+
use: git
8+
filters:
9+
exclude:
10+
- Merge branch
11+
- Merge pull request
12+
13+
builds:
14+
- env:
15+
- CGO_ENABLED=0
16+
goos:
17+
- linux
18+
- windows
19+
- darwin
20+
goarch:
21+
- 386
22+
- amd64
23+
- arm64
24+
ignore:
25+
- goos: windows
26+
goarch: arm64
27+
- goos: darwin
28+
goarch: 386
29+
main: ./cmd
30+
binary: symfony
31+
ldflags: -s -w -X 'main.channel={{ if index .Env "AUTOUPDATE_CHANNEL" }}{{ .Env.AUTOUPDATE_CHANNEL }}{{ else }}dev{{ end }}' -X 'main.buildDate={{ .Date }}' -X 'main.version={{ .Version }}'
32+
flags:
33+
- -trimpath
34+
35+
archives:
36+
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
37+
format_overrides:
38+
- goos: windows
39+
format: zip
40+
files:
41+
- README.md
42+
- LICENSE
43+
44+
checksum:
45+
name_template: 'checksums.txt'
46+
47+
snapshot:
48+
name_template: "next"
49+
50+
universal_binaries:
51+
- replace: true
52+
53+
release:
54+
footer: |
55+
**Full Changelog**: https://github.com/symfony-cli/symfony-cli/compare/{{ .PreviousTag }}...{{ .Tag }}

0 commit comments

Comments
 (0)