mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
3031bb55d1
Bumps [actions-ecosystem/action-get-latest-tag](https://github.com/actions-ecosystem/action-get-latest-tag) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/actions-ecosystem/action-get-latest-tag/releases) - [Commits](https://github.com/actions-ecosystem/action-get-latest-tag/compare/v1.5.0...v1.6.0) --- updated-dependencies: - dependency-name: actions-ecosystem/action-get-latest-tag dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tarik Megzari <tarik.megzari@corp.ovh.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@v3
|
|
# 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.6.0
|
|
id: get-latest-tag
|
|
# GENERATE CHANGELOG CORRESPONDING TO COMMIT BETWEEN HEAD AND COMPUTED LAST TAG
|
|
- name: Generate changelog
|
|
id: changelog
|
|
uses: metcalfc/changelog-generator@v3.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
|