We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent cb2db19 commit 72e3860Copy full SHA for 72e3860
.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