-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (67 loc) · 2.2 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Create release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+-?**"
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: build with maven
run: ./mvnw -Drevision=${{github.ref_name}} -Dchangelist="" -Drelease.url="https://github.com/SCDH/oxbytao/releases/download/${{ github.ref_name }}/" --batch-mode --update-snapshots verify
- name: store oxygen framework descriptor file
uses: actions/upload-artifact@v4
with:
name: oxygen-framework-descriptor
path: target/descriptor.xml
retention-days: 1
- name: create release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: false
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body_path: changeLog.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: upload framework package to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/oxbytao-${{ github.ref_name }}-package.zip
asset_name: oxbytao-${{ github.ref_name }}-package.zip
asset_content_type: application/zip
pages:
runs-on: ubuntu-latest
needs: deploy
permissions:
contents: write
steps:
- name: Download descriptor artifact
uses: actions/download-artifact@v4
with:
name: oxygen-framework-descriptor
- name: create directory for github pages
run: mkdir -p public
- name: Display structure of downloaded files
run: ls -R
- name: copy descriptor file
run: cp descriptor.xml public/
- name: Deploy descriptor file on Github pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public