@@ -18,23 +18,21 @@ jobs:
1818 runs-on : ubuntu-latest
1919 steps :
2020 - uses : ory/ci/checkout@master
21- - uses : actions/cache@v4
22- with :
23- path : internal/httpclient
24- key : ${{ needs.sdk-generate.outputs.sdk-cache-key }}
2521 - uses : actions/setup-go@v6
2622 with :
2723 go-version : " 1.25"
2824 - run : go list -json > go.list
2925 - name : Run nancy
3026 uses :
sonatype-nexus-community/[email protected] 3127 - name : Run golangci-lint
28+ if : ${{ github.ref_type != 'tag' }}
3229 uses : golangci/golangci-lint-action@v8
3330 env :
3431 GOGC : 100
3532 with :
3633 args : --timeout 10m0s
3734 version : latest
35+ only-new-issues : " true"
3836 - name : Run go-acc (tests)
3937 run : |
4038 make .bin/go-acc
@@ -71,26 +69,13 @@ jobs:
7169 with :
7270 go-version : " 1.25"
7371
74- changelog :
75- name : Generate changelog
76- runs-on : ubuntu-latest
77- if : ${{ github.ref_type == 'tag' || github.ref_name == 'master' }}
78- needs :
79- - test
80- - validate
81- steps :
82- - uses : ory/ci/changelog@master
83- with :
84- token : ${{ secrets.ORY_BOT_PAT }}
85-
8672 release :
8773 name : Generate release
8874 runs-on : ubuntu-latest
8975 if : ${{ github.ref_type == 'tag' }}
9076 needs :
9177 - test
9278 - validate
93- - changelog
9479 steps :
9580 - uses : ory/ci/releaser@master
9681 with :
@@ -100,18 +85,6 @@ jobs:
10085 docker_username : ${{ secrets.DOCKERHUB_USERNAME }}
10186 docker_password : ${{ secrets.DOCKERHUB_PASSWORD }}
10287
103- render-version-schema :
104- name : Render version schema
105- runs-on : ubuntu-latest
106- if : ${{ github.ref_type == 'tag' }}
107- needs :
108- - release
109- steps :
110- - uses : ory/ci/releaser/render-version-schema@master
111- with :
112- schema-path : .schema/config.schema.json
113- token : ${{ secrets.ORY_BOT_PAT }}
114-
11588 newsletter-draft :
11689 name : Draft newsletter
11790 runs-on : ubuntu-latest
0 commit comments