Update README.md #47
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
on: | |
push: | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
name: Create Release | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive Release | |
uses: thedoctor0/zip-release@master | |
with: | |
filename: 'Theme_SirMotte_Hearth.ext' | |
exclusions: '*.git* *.github* /*node_modules/* /*build-windows/* .editorconfig body.md todo.txt *.ext .german_translation.txt .themecolors.txt' | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "Theme_SirMotte_Hearth.ext" | |
token: ${{ secrets.GITHUB_TOKEN }} | |
allowUpdates: true |