mirror of
https://github.com/boostorg/boost.git
synced 2025-05-11 21:24:11 +00:00
Update release.yml
This commit is contained in:
parent
b59035b953
commit
c696104d62
45
.github/workflows/release.yml
vendored
45
.github/workflows/release.yml
vendored
@ -6,26 +6,55 @@ on:
|
|||||||
- boost-*
|
- boost-*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
make-release:
|
release-posix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
path: ${{ github.ref_name }}
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
|
- name: Cleanup
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} +
|
||||||
|
|
||||||
- name: Create archives
|
- name: Create archives
|
||||||
run: |
|
run: |
|
||||||
cd ..
|
|
||||||
cp -a ${{ github.event.repository.name }} ${{ github.ref_name }}
|
|
||||||
rm -rf ${{ github.ref_name }}/.git
|
|
||||||
zip -q ${{ github.ref_name }}.zip -r ${{ github.ref_name }}
|
|
||||||
tar -czf ${{ github.ref_name }}.tar.gz ${{ github.ref_name }}
|
tar -czf ${{ github.ref_name }}.tar.gz ${{ github.ref_name }}
|
||||||
tar -cJf ${{ github.ref_name }}.tar.xz ${{ github.ref_name }}
|
tar -cJf ${{ github.ref_name }}.tar.xz ${{ github.ref_name }}
|
||||||
|
|
||||||
- uses: softprops/action-gh-release@v1
|
- uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
../${{ github.ref_name }}.zip
|
${{ github.ref_name }}.tar.gz
|
||||||
../${{ github.ref_name }}.tar.gz
|
${{ github.ref_name }}.tar.xz
|
||||||
../${{ github.ref_name }}.tar.xz
|
|
||||||
|
release-windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
needs: release-posix
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
path: ${{ github.ref_name }}
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Cleanup
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
find ${{ github.ref_name }} -name ".git" -prune -exec rm -rf {} +
|
||||||
|
|
||||||
|
- name: Create archives
|
||||||
|
shell: cmd
|
||||||
|
run: |
|
||||||
|
7z a ${{ github.ref_name }}.zip ${{ github.ref_name }}
|
||||||
|
7z a ${{ github.ref_name }}.7z ${{ github.ref_name }}
|
||||||
|
|
||||||
|
- uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
${{ github.ref_name }}.zip
|
||||||
|
${{ github.ref_name }}.7z
|
||||||
|
Loading…
x
Reference in New Issue
Block a user