Skip to content

Commit

Permalink
Update 20_snapshot-deployment.yml (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkir authored May 20, 2024
1 parent 190f277 commit 25811b3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/20_snapshot-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 20 snapshot deployment

on:
push:
branches: [ "main" ]
branches: [ "next" ]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -45,3 +45,18 @@ jobs:
run: |
./build.sh --jar-signing --deploy
continue-on-error: false

- name: Generate Changelog
run: echo "# Good things have arrived" > ${{ github.workspace }}-CHANGELOG.txt

- name: Release
uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{ github.workspace }}-CHANGELOG.txt
releng/repo.binary/target/repository/p2.index
releng/repo.binary/target/repository/content.xml.xz
releng/repo.binary/target/repository/artifacts.xml.xz
draft: true
prerelease: false

0 comments on commit 25811b3

Please sign in to comment.