Skip to content

Instantly share code, notes, and snippets.

@josiahhaswell
Created June 16, 2020 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josiahhaswell/30ae8773bc65c289d8bfa0aec16aeaee to your computer and use it in GitHub Desktop.
Save josiahhaswell/30ae8773bc65c289d8bfa0aec16aeaee to your computer and use it in GitHub Desktop.
name: Prepare Zephyr Release
on:
push:
tags:
- 't*'
jobs:
build:
runs-on: ubuntu-latest
################# Set up Environment #################
#
# This is where we set the new MAJOR and MINOR versions
# for a series of releases. This must be updated both
# here and in release.yml
#
################# Set up Environment #################
env:
CURRENT_MAJOR_VERSION: 2
CURRENT_MINOR_VERSION: 0
################# Overview of Build Process #################
# Note: this is documented fully at
# https://github.com/sunshower-io/zephyr/build.md
#
# Versions: most/all component versions should be stored in
# bom/imported/pom.xml
#
# Released versions: All exported component versions should be
# stored in bom/exported/pom.xml
#
# Odd dependency notes:
# Project path: tools/zephyr-bundle/native-packages/(windows,linux,mac)
# Notes: These projects depend on warp (https://github.com/dgiagio/warp/releases)
#
#
#
#
################# Overview of Build Process #################
steps:
- name: Checkout
uses: actions/checkout@master
with:
persist-credentials: false
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment