Skip to content

Commit b3a0905

Browse files
author
Spacehuhn
committed
Add release workflow
1 parent 3fea51e commit b3a0905

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Notify packager repo to release new version
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
env:
8+
PROJECT: wifiduck
9+
PACKAGE: avr
10+
11+
jobs:
12+
13+
publish-mac:
14+
name: "Message spacehuhntech/arduino"
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Read version
18+
run: |
19+
echo ::set-env name=TAG::${GITHUB_REF/refs\/tags\//}
20+
echo ::set-env name=VERSION::$(echo "${GITHUB_REF/refs\/tags\//}" | awk -F- -v OFS=- '{print $3}')
21+
22+
- name: Send message
23+
run: |
24+
curl -X POST https://api.github.com/repos/spacehuhntech/arduino/dispatches \
25+
-H 'Accept: application/vnd.github.everest-preview+json' \
26+
-u ${{ secrets.ACCESS_TOKEN }} \
27+
--data '{"event_type": "release ${{ env.TAG }}", "client_payload": { "version": "${{ env.VERSION }}", "project": "${{ env.PROJECT }}", "package": "${{ env.PACKAGE }}", "tag": "${{ env.TAG }}"}}'

platform.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
# For more info:
66
# https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification
77

8-
name=WiFi Duck AVR Boards
9-
10-
# Replaced on release
8+
name=WiFi Duck AVR Boards (X.X.X)
119
version=X.X.X
1210

1311
# AVR compile variables

0 commit comments

Comments
 (0)