chore(deps): update actions/checkout digest to a5ac7e5 #176
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-test' | |
on: | |
pull_request: | |
env: | |
##### EDIT ME ##### | |
iso-profiles-git: https://gitlab.manjaro.org/profiles-and-settings/iso-profiles | |
version: ci-test-ignore-me-${{ github.event.number }} | |
################### | |
jobs: | |
cleanup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: delete test-release | |
run: | | |
echo ${{ github.token }} | gh auth login --with-token | |
gh release delete ${{ env.version }} -y --repo ${{ github.repository }} || exit 0 | |
git push --delete origin ${{ env.version }} | |
build-release: | |
runs-on: ubuntu-22.04 | |
needs: [cleanup] | |
strategy: | |
matrix: | |
##### EDIT ME ##### | |
EDITION: [xfce] | |
BRANCH: [stable] | |
SCOPE: [minimal] | |
################### | |
steps: | |
- uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- id: image-build | |
uses: ./ | |
with: | |
iso-profiles-repo: ${{ env.iso-profiles-git }} | |
edition: ${{ matrix.edition }} | |
branch: ${{ matrix.branch }} | |
scope: ${{ matrix.scope }} | |
version: ${{ env.version }} | |
release-tag: ${{ env.version }} | |
gpg-secret-key-base64: ${{ secrets.gpg_secret_base64 }} | |
gpg-passphrase: 1234 | |
cdn77-host: ${{ secrets.CDN_HOST }} | |
cdn77-user: ${{ secrets.CDN_USER }} | |
cdn77-pwd: ${{ secrets.CDN_PWD }} | |
sf-project: manjarolinux | |
sf-user: ${{ secrets.SF_USER_NAME }} | |
sf-key: ${{ secrets.SF_PRIV_SSHKEY }} | |
# custom-repo: | |
office-chooser: true | |
build-mirror: ${{ secrets.BUILD_MIRROR }} | |
# osdn is absurdly slow sometimes | |
# osdn-project: manjaro | |
# osdn-user: ${{ secrets.OSDN_USER_NAME }} | |
# osdn-key: ${{ secrets.OSDN_PRIV_SSHKEY }} |