Skip to content

Fixed issue where tooltips would show the card's face up image even i… #23

Fixed issue where tooltips would show the card's face up image even i…

Fixed issue where tooltips would show the card's face up image even i… #23

Workflow file for this run

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: 'DeckedOut.ext'
exclusions: '*.git* /*node_modules/* .editorconfig body.md'
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "DeckedOut.ext"
token: ${{ secrets.GITHUB_TOKEN }}
allowUpdates: true