Skip to content

v3.39.0-uat.2013.11.02 #111

v3.39.0-uat.2013.11.02

v3.39.0-uat.2013.11.02 #111

Workflow file for this run

name: Automatic appending of build product to releases
on:
release:
types: published
env:
BUNDLE_WITHOUT: 'test lint'
jobs:
build-and-append-to-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Export node version
id: node_version
run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc)
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ steps.node_version.outputs.NODE_VERSION }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# Actually run our build
- name: Compile Build
run: ./compile-build
# Upload the release asset as an artifact to the existing release
- uses: shogo82148/[email protected]
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: release.tar.gz
asset_content_type: application/gzip