simple-orm-stack #26
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: 'simple-orm-stack' | |
on: [push, pull_request] | |
env: | |
PROJECT_WORKING_DIR: '/build-orm/' | |
jobs: | |
terraform_generate_orm_zip: | |
name: 'Generate Stack Package' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: 'Terraform Init' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: 0.12.17 | |
tf_actions_subcommand: 'init' | |
tf_actions_working_dir: ${{ env.PROJECT_WORKING_DIR }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Terraform Validate' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: 0.12.17 | |
tf_actions_subcommand: 'validate' | |
tf_actions_working_dir: ${{ env.PROJECT_WORKING_DIR }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Terraform Apply' | |
uses: hashicorp/terraform-github-actions@master | |
with: | |
tf_actions_version: 0.12.17 | |
tf_actions_subcommand: 'apply' | |
tf_actions_working_dir: ${{ env.PROJECT_WORKING_DIR }} | |
args: '-var="save_to"="export-dist"' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
Changes in this Release | |
- New ORM Stack template ${{ github.ref }} | |
draft: true | |
prerelease: true | |
- name: Upload Release Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1.0.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ${{ github.workspace }}${{ env.PROJECT_WORKING_DIR }}export-dist/orm.zip | |
asset_name: orm-stack.zip | |
asset_content_type: application/zip |