We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55859ad commit 311a143Copy full SHA for 311a143
.github/workflows/test.yaml
@@ -117,3 +117,28 @@ jobs:
117
token: ${{secrets.CODECOV_TOKEN}}
118
file: ./coverage_integ.txt
119
flags: integ
120
+
121
+ create-pull-request-artifacts:
122
+ runs-on: ubuntu-latest
123
+ needs: test-matrix
124
125
+ container:
126
+ image: arduino/arduino-cli:builder-1
127
+ volumes:
128
+ # cache go dependencies across pipeline's steps
129
+ - ${{ github.workspace }}/go:/go
130
131
+ steps:
132
+ - name: checkout
133
+ uses: actions/checkout@v1
134
135
+ - name: build
136
+ env:
137
+ PACKAGE_NAME_PREFIX: ${{ github.workflow }}
138
+ run: goreleaser --snapshot
139
140
+ - name: Upload artifacts
141
+ uses: actions/upload-artifact@v1
142
+ with:
143
+ name: dist
144
+ path: dist
0 commit comments