mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
faf5b155e5
Bumps [metcalfc/changelog-generator](https://github.com/metcalfc/changelog-generator) from v0.4.4 to v1.0.0. - [Release notes](https://github.com/metcalfc/changelog-generator/releases) - [Changelog](https://github.com/metcalfc/changelog-generator/blob/main/release-notes.png) - [Commits](https://github.com/metcalfc/changelog-generator/compare/v0.4.4...e5306b306fa2e34f05258789e0e5c526c1bd4352) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thibault Ayanides <thibault.ayanides@ovhcloud.com>
65 lines
2.1 KiB
YAML
65 lines
2.1 KiB
YAML
---
|
|
name: Create Pre-Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
name: Create Pre-Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# CHECKOUT CODE
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
# BUILD THE .DEB PACKAGE
|
|
- name: Build
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential devscripts debhelper
|
|
sudo debuild --buildinfo-option=-O -us -uc -b -j8
|
|
find ../ -name "*.deb" -exec mv {} cis-hardening.deb \;
|
|
# DELETE THE TAG NAMED LATEST AND THE CORRESPONDING RELEASE
|
|
- name: Delete the tag latest and the release latest
|
|
uses: dev-drprasad/delete-tag-and-release@v0.2.0
|
|
with:
|
|
delete_release: true
|
|
tag_name: latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# GET LATEST VERSION TAG
|
|
- name: Get latest version tag
|
|
uses: actions-ecosystem/action-get-latest-tag@v1.4.1
|
|
id: get-latest-tag
|
|
# GENERATE CHANGELOG CORRESPONDING TO COMMIT BETWEEN HEAD AND COMPUTED LAST TAG
|
|
- name: Generate changelog
|
|
id: changelog
|
|
uses: metcalfc/changelog-generator@v1.0.0
|
|
with:
|
|
myToken: ${{ secrets.GITHUB_TOKEN }}
|
|
head-ref: ${{ github.sha }}
|
|
base-ref: ${{ steps.get-latest-tag.outputs.tag }}
|
|
# CREATE RELEASE NAMED LATEST
|
|
- name: Create Release
|
|
id: create_release
|
|
uses: actions/create-release@v1.1.4
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: latest
|
|
release_name: Pre-release
|
|
body: ${{ steps.changelog.outputs.changelog }}
|
|
draft: false
|
|
prerelease: true
|
|
# UPLOAD PACKAGE .DEB
|
|
- name: Upload Release deb
|
|
id: upload-release-asset
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
asset_path: ./cis-hardening.deb
|
|
asset_name: cis-hardening.deb
|
|
asset_content_type: application/vnd.debian.binary-package
|