Merge pull request #46 from Siteimprove/INS-2936 #15
Workflow file for this run
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: Create Release | |
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Archive Release | |
uses: Siteimprove/zip-release@main | |
with: | |
type: 'zip' | |
filename: 'siteimprove.zip' | |
exclusions: '*.git* /*node_modules/* .editorconfig .gitignore phpcs.xml README.md /*.github/*' | |
- name: Upload Release | |
uses: Siteimprove/release-action@v1 | |
with: | |
artifacts: "siteimprove.zip" | |
token: ${{ secrets.GITHUB_TOKEN }} |