Skip to content

Commit

Permalink
Merge pull request #2416 from mapfish/backport/2414-to-master
Browse files Browse the repository at this point in the history
[Backport master] [Backport 3.28] Publish to GitHub Package
  • Loading branch information
sbrunner authored May 4, 2022
2 parents eb3c423 + 70de422 commit 5ff52da
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 11 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get tag
id: tag2
Expand All @@ -37,8 +39,28 @@ jobs:
- run: gpg --export-secret-keys --armor D121AF2DFA8E140688BD968930C9B913FD42EF13 > CI.asc
if: env.HAS_SECRETS == 'HAS_SECRETS'

- id: tag
run: echo "##[set-output name=tag;]$(echo ${{ github.ref }}|sed 's%refs/tags/%%g')"
if: startsWith(github.ref, 'refs/tags/')
- run: sed --in-place 's/version = .*/version = "${{ steps.tag.outputs.tag }}"/g' build.gradle
if: startsWith(github.ref, 'refs/tags/')

- id: last-tag
run: echo "##[set-output name=tag;]$(git describe --tags --abbrev=0)"
if: "!startsWith(github.ref, 'refs/tags/')"
- id: no-tag
run: echo "##[set-output name=nb;]$(git log --oneline ${{ steps.last-tag.outputs.tag }}..HEAD|wc -l)"
if: "!startsWith(github.ref, 'refs/tags/')"
- run: sed --in-place 's/version = .*/version = "${{ steps.last-tag.outputs.tag }}"/g' build.gradle
if: "!startsWith(github.ref, 'refs/tags/') && steps.no-tag.outputs.nb == 0"
- run: sed --in-place 's/version = .*/version = "${{ steps.last-tag.outputs.tag }}+${{ steps.no-tag.outputs.nb }}"/g' build.gradle
if: "!startsWith(github.ref, 'refs/tags/') && steps.no-tag.outputs.nb > 0"
- run: sed --in-place 's/version = .*/version = "SNAPSHOT"/g' build.gradle
if: "github.ref == 'refs/heads/master'"

- run: echo "enablePublishing=true" > gradle.properties
if: env.HAS_SECRETS == 'HAS_SECRETS'
- run: git diff

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --requirement=ci/requirements.txt
Expand Down Expand Up @@ -104,11 +126,11 @@ jobs:
- name: Publish
run: c2cciutils-publish
if: env.HAS_SECRETS == 'HAS_SECRETS'
- run: docker run --rm --env=GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} mapfish_print_builder bash -c 'gradle build && gradle publish'
if: ( startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' ) && env.HAS_SECRETS == 'HAS_SECRETS'

- id: version
run: echo "##[set-output name=version;]$(grep version build.gradle|sed "s/ \+version = .\(.*\)./\1/g")"
- id: tag
run: echo "##[set-output name=tag;]$(echo ${{ github.ref }}|sed 's%refs/tags/%%g')"
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,17 @@ jobs:

- run: gpg --export-secret-keys --armor D121AF2DFA8E140688BD968930C9B913FD42EF13 > CI.asc

- id: last-tag
run: echo "##[set-output name=tag;]$(git describe --tags --abbrev=0)"
- id: no-tag
run: echo "##[set-output name=nb;]$(git log --oneline ${{ steps.last-tag.outputs.tag }}..HEAD|wc -l)"
- run: sed --in-place 's/version = .*/version = "${{ steps.last-tag.outputs.tag }}"/g' build.gradle
if: 'steps.no-tag.outputs.nb == 0'
- run: sed --in-place 's/version = .*/version = "${{ steps.last-tag.outputs.tag }}+${{ steps.no-tag.outputs.nb }}"/g' build.gradle
if: 'steps.no-tag.outputs.nb > 0'

- run: echo "enablePublishing=true" > gradle.properties
- run: git diff

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- run: python3 -m pip install --user --requirement=ci/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ wrapper {

allprojects {
group = 'org.mapfish.print'
version = '3.29.0-SNAPSHOT'
version = '1.0.0'
ext.spotbugsVersion = '4.6.0'

apply plugin: 'org.owasp.dependencycheck'
Expand Down
5 changes: 0 additions & 5 deletions ci/config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
version:
tag_to_version_re:
- from: release/([0-9]+\.[0-9]+\.[0-9]+)
to: \1

checks:
required_workflows:
audit.yaml:
Expand Down
4 changes: 1 addition & 3 deletions publish/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ which is the staging repository for maven central.

# Automated Process

1. Edit the root `build.gradle` to change the `allprojects/version` and commit that with a
`release/${version}` tag.
2. Push the commit and the tag to GitHub.
1. Create a `x.y.z` tag.

## Docker daily build

Expand Down

0 comments on commit 5ff52da

Please sign in to comment.