Skip to content

added jpa as an accepted Java word #18

added jpa as an accepted Java word

added jpa as an accepted Java word #18

Workflow file for this run

name: release
on:
push:
tags:
- 'v.*'
jobs:
build_release:
name: build_release
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
release_name: Release ${{ github.ref }}
tag_name: ${{ github.ref }}
body: Auto release for tag ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Archive content
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'axoniq-vale-package.zip'
exclusions: '*.git* *.github*'
- name: upload artifact
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./axoniq-vale-package.zip
asset_name: axoniq-vale-package.zip
asset_content_type: application/gzip