Skip to content

Query - check explicitly for array key #11

Query - check explicitly for array key

Query - check explicitly for array key #11

Workflow file for this run

name: Release
on:
push: {tags: ['*']}
permissions:
deployments: write
contents: write
jobs:
release:
runs-on: ubuntu-20.04
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Package the source
run: |
tar -cvf api.tar.gz *
- name: Crease a release
uses: ncipollo/release-action@v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"
artifacts: "api.tar.gz"