bump to 4.1.4 #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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@v4 | |
# 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/[email protected] | |
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/[email protected] | |
id: get-latest-tag | |
# GENERATE CHANGELOG CORRESPONDING TO COMMIT BETWEEN HEAD AND COMPUTED LAST TAG | |
- name: Generate changelog | |
id: changelog | |
uses: metcalfc/[email protected] | |
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/[email protected] | |
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 |