64 lines
2.1 KiB
YAML
64 lines
2.1 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: createRelease
|
|
|
|
# Controls when the action will run.
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
branches: [ release ]
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains a single job called "build"
|
|
release:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
#set version
|
|
- name: set version
|
|
id: version
|
|
run: echo "::set-output name=version::$(date +'%Y%m%d')"
|
|
- name: Install deps
|
|
run: |
|
|
#apt-get update
|
|
#apt-get install -y python3-pip nodejs
|
|
python3 -m pip install --upgrade pip
|
|
pip install -U platformio
|
|
# Runs a single command using the runners shell
|
|
- name: build binaries
|
|
env:
|
|
VERSION: ${{ steps.version.outputs.version}}
|
|
PLATFORMIO_BUILD_FLAGS: "-DGWRELEASEVERSION=${{ steps.version.outputs.version}}"
|
|
run: pio run
|
|
|
|
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.version.outputs.version}}
|
|
release_name: ${{ steps.version.outputs.version }}
|
|
draft: false
|
|
prerelease: false
|
|
- name: Upload Release Asset
|
|
id: upload-release-asset
|
|
uses: svenstaro/upload-release-action@2.2.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
tag: ${{ steps.version.outputs.version}}
|
|
file: ./.pio/build/*/*-all.bin
|
|
file_glob: true
|