Skip to content

Commit

Permalink
Merge branch 'release-action'
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaving committed Jan 4, 2024
2 parents 1b11744 + 0f35e0e commit a06f17a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

name: tagged-release

on:
push:
tags:
- "v*"

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

jobs:
tagged-release:
runs-on: ubuntu-latest

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a single command using the runners shell
- name: Create settings.jar
run: buildjar.sh

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Contents of jar
unzip -l settings.jar

0 comments on commit a06f17a

Please sign in to comment.