Skip to content

Commit

Permalink
Deploying from phrase/openapi@59b16433
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed May 21, 2020
1 parent 839fb5d commit 9aec7e4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: release

on:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
-
name: Version
id: version
run: |
echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
-
name: Release Github Package
run: bash ./build/release_github_package.sh -xe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.version.outputs.VERSION }}
OWNER: phrase
3 changes: 3 additions & 0 deletions version.rb.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module Phrase
VERSION = '1.0.0'
end

0 comments on commit 9aec7e4

Please sign in to comment.