Skip to content

Commit

Permalink
Create prepare-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-thorel-of authored Feb 7, 2024
1 parent 7b0b0e6 commit 514495c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy Package

on:
release:
types: [edited]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Info
run: |
echo "Launch info $${{ github.event.inputs }}"
echo "Release version: ${{ github.event.inputs.releaseVersion }}, Development version: ${{ github.event.inputs.developmentVersion }}"
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.target_commitish }}

0 comments on commit 514495c

Please sign in to comment.