Skip to content

Commit

Permalink
chore: Release Master action
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa authored Oct 18, 2019
1 parent 0c210c5 commit ea336b8
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Swift

on:
push:
branches:
- master

jobs:
build:

runs-on: macOS-latest

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build
run: swift build -c release -v
- name: Create Release
id: create_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit ea336b8

Please sign in to comment.