Merge pull request #42 from MondayHopscotch/action-heaps-release-version #31
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
name: Build & Release | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push, but only for the master branch | |
push: | |
branches: [ master ] | |
# 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: | |
build: | |
name: Build & Upload Artifacts | |
runs-on: ubuntu-latest | |
outputs: | |
released: ${{ steps.check.outputs.changed }} | |
version: ${{ steps.check.outputs.version }} | |
steps: | |
- name: Build Library | |
uses: AustinEast/echo/.github/composites/build@master | |
- name: Check version | |
uses: EndBug/version-check@v1 | |
id: check | |
with: | |
file-name: haxelib.json | |
diff-search: true | |
- name: Prepare Artifacts | |
run: | | |
zip -r echo-haxelib.zip echo LICENSE README.md haxelib.json | |
zip -r echo-web.zip bin | |
- name: Upload Echo Haxelib Artifact | |
uses: actions/[email protected] | |
with: | |
name: echo-haxelib | |
path: echo-haxelib.zip | |
- name: Upload Echo Website Artifact | |
uses: actions/[email protected] | |
with: | |
name: echo-web | |
path: echo-web.zip | |
release: | |
name: Create Release | |
needs: build | |
if: needs.build.outputs.released | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ needs.build.outputs.version }} | |
# tag_name: ${{ github.ref }} | |
release_name: ${{ needs.build.outputs.version }} | |
# release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
deploy-website: | |
name: Deploy to Website | |
needs: build | |
if: needs.build.outputs.released | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download Website Artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: echo-web | |
- name: Unzip Website Artifacts | |
run: unzip echo-web.zip | |
- name: Deploy to Github Pages Branch | |
uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
target_branch: gh-pages | |
build_dir: bin | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
deploy-haxelib: | |
name: Publish to Haxelib | |
needs: build | |
if: needs.build.outputs.released | |
runs-on: ubuntu-latest | |
steps: | |
- uses: krdlab/setup-haxe@v1 | |
- name: Download Haxelib Artifact | |
uses: actions/download-artifact@v2 | |
with: | |
name: echo-haxelib | |
- name: Submit to Haxelib | |
run: haxelib submit echo-haxelib.zip ${{ secrets.HAXELIB_PWD }} --always |