Skip to content

Commit

Permalink
ci: add .github/workflows/release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abetomo committed Apr 28, 2021
1 parent 0b221a3 commit 4e1084b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Convert-Athena-QueryResults-to-Array

[![Latest Stable Version](https://poser.pugx.org/abetomo/convert-athena-query-results-to-array/v/stable)](https://packagist.org/packages/abetomo/convert-athena-query-results-to-array)
![PHP CI](https://github.com/abetomo/Convert-Athena-QueryResults-to-Array/workflows/PHP%20CI/badge.svg)
[![Test](https://github.com/abetomo/Convert-Athena-QueryResults-to-Array/actions/workflows/workflow.yml/badge.svg)](https://github.com/abetomo/Convert-Athena-QueryResults-to-Array/actions/workflows/workflow.yml)

Convert AWS Athena QueryResults to Array.
Since the response of GetQueryResults is complicated, it converts it to a simple array.
Expand Down

0 comments on commit 4e1084b

Please sign in to comment.