Skip to content

Commit

Permalink
sdsd
Browse files Browse the repository at this point in the history
  • Loading branch information
aramikm committed Aug 9, 2023
1 parent 805c24a commit 88782e0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+_java" # ex. v1.0.0+java
- "v[0-9]+.[0-9]+.[0-9]+_java" # ex. v1.0.0_java

workflow_dispatch:
inputs:
Expand All @@ -23,15 +23,16 @@ env:
jobs:
build-artifacts:
name: test
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: setup files
run: |
touch test1.sources.jar
touch test1.jar
ls
- name: Rename Packages
- name: print event
run: |
Get-ChildItem *.jar| Rename-Item -NewName { $_.Name -replace '\.jar','-windows.jar' }
ls
echo ${{github.event}}
echo ${{github.event.name}}
echo ${{github.event_name}}

0 comments on commit 88782e0

Please sign in to comment.