-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automatic releases containing prebuilt binaries for new version tags
+ Add GitHub Actions to build, release and upload build files + Add install instructions to README + Add CHANGELOG file * Bump version to 0.4.0 - Remove snsfrom release directory - Remove release directory
- Loading branch information
Showing
4 changed files
with
99 additions
and
14,010 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: CI | ||
|
||
# Controls when the action will run. | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
# 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" | ||
build: | ||
# 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 | ||
|
||
- name: Build | ||
id: build | ||
run: | | ||
curl -s https://get.space.sh | sudo sh | ||
sh ./make.sh | ||
cd release | ||
echo ::set-output name=snsversion::$(sha256sum --tag sns) | ||
cd .. | ||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
body: | | ||
Check the attachments below for this release's prebuilt executables: | ||
* ${{ steps.build.outputs.snsversion }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release sns | ||
id: upload-release-sns | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./release/sns | ||
asset_name: sns | ||
asset_content_type: application/x-shellscript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Simplenetes - Change log | ||
|
||
## [0.4.0 - 2021-04-12] | ||
This version enables automatic releases containing prebuilt binaries for new version tags. | ||
|
||
+ Emit warning when trying to generate ingress for running pods which have ingress deactivated | ||
|
||
+ Add --version long option | ||
|
||
+ Add --help long option | ||
|
||
* Fix commands attempting to create missing cluster pods directory | ||
|
||
* Set version in Spacefile.yaml instead | ||
|
||
- Remove absolute path of keyfile when creating superuser | ||
|
||
|
||
## [0.3.3 - 2021-04-01] | ||
|
||
## [0.3.2 - 2021-03-31] | ||
|
||
## [0.3.1 - 2021-03-31] | ||
|
||
## [0.3.0 - 2021-03-29] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.