Update robinraju/release-downloader action to v1.11 #23
Workflow file for this run
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: Build packages | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [ master ] | |
tags: | |
- "*" | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
deb: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
# download the other assets | |
- uses: robinraju/[email protected] | |
with: | |
repository: "zeridon/ca-certificates-b-trust" | |
latest: true | |
fileName: "*.deb" | |
- uses: robinraju/[email protected] | |
with: | |
repository: zeridon/ca-certificates-evrotrust | |
latest: true | |
fileName: "*.deb" | |
- uses: robinraju/[email protected] | |
with: | |
repository: zeridon/ca-certificates-infonotary | |
latest: true | |
fileName: "*.deb" | |
- uses: robinraju/[email protected] | |
with: | |
repository: zeridon/ca-certificates-sep | |
latest: true | |
fileName: "*.deb" | |
- uses: robinraju/[email protected] | |
with: | |
repository: zeridon/ca-certificates-stampit | |
latest: true | |
fileName: "*.deb" | |
# package for debian | |
- uses: dawidd6/[email protected] | |
# create release on tag | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: ${{ github.workspace }}/**/*.deb |