Skip to content

Commit

Permalink
Workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseleite committed Mar 6, 2024
1 parent abeb885 commit bd8d953
Showing 1 changed file with 4 additions and 20 deletions.
24 changes: 4 additions & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,22 @@
# This is a basic workflow to help you get started with Actions

name: Release

# Controls when the action will run.
on:
push:
tags:
- '*'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# 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:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Zip Release
# You may pin to the exact commit or the version.
# uses: TheDoctor0/zip-release@a1afcab9c664c9976ac398fa831eac67bed1eb0e
uses: TheDoctor0/[email protected]
uses: TheDoctor0/[email protected]
with:
# Filename for archive
exclusions: '*.git*'
type: 'zip'
filename: GridLayout.spoon.zip
exclusions: '*.git*'
- name: Upload Release
uses: ncipollo/release-action@v1
uses: ncipollo/release-action@v1.12.0
with:
artifacts: "GridLayout.spoon.zip"
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit bd8d953

Please sign in to comment.