mirror of
https://github.com/RetroDECK/components-template.git
synced 2024-11-21 19:05:39 +00:00
Fixing workflows to correctly outsource Rekku Token
This commit is contained in:
parent
08033954dc
commit
2f44eb03ce
13
.github/workflows/build_artifacts.yml
vendored
13
.github/workflows/build_artifacts.yml
vendored
|
@ -21,18 +21,23 @@ env:
|
||||||
DATE: ${{ github.run_id }}
|
DATE: ${{ github.run_id }}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
# Generate Rekku Token Job
|
||||||
|
Generate-Rekku-Token:
|
||||||
|
uses: RetroDECK/components-template/.github/workflows/generate_rekku_token.yml@main
|
||||||
|
secrets:
|
||||||
|
REKKU_PRIVATE_KEY: ${{ secrets.REKKU_PRIVATE_KEY }}
|
||||||
|
|
||||||
Building-project:
|
Building-project:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
REKKU_TOKEN: ${{ needs.Generate-Rekku-Token.outputs.rekku_token }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Prepearing environment
|
- name: Prepearing environment
|
||||||
run: curl -s "https://raw.githubusercontent.com/RetroDECK/components-template/refs/heads/main/automation_tools/install_dependencies.sh" | /bin/bash
|
run: curl -s "https://raw.githubusercontent.com/RetroDECK/components-template/refs/heads/main/automation_tools/install_dependencies.sh" | /bin/bash
|
||||||
|
|
||||||
- name: Generate a token for Rekku
|
|
||||||
id: generate-rekku-token
|
|
||||||
uses: RetroDECK/components-template/.github/workflows/generate_rekku_token.yml@main
|
|
||||||
|
|
||||||
- name: Clone repo
|
- name: Clone repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|
13
.github/workflows/pr_from_upstream.yml
vendored
13
.github/workflows/pr_from_upstream.yml
vendored
|
@ -9,8 +9,17 @@ on:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
# Generate Rekku Token Job
|
||||||
|
Generate-Rekku-Token:
|
||||||
|
uses: RetroDECK/components-template/.github/workflows/generate_rekku_token.yml@main
|
||||||
|
secrets:
|
||||||
|
REKKU_PRIVATE_KEY: ${{ secrets.REKKU_PRIVATE_KEY }}
|
||||||
|
|
||||||
sync-upstream:
|
sync-upstream:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
REKKU_TOKEN: ${{ needs.Generate-Rekku-Token.outputs.rekku_token }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
@ -23,10 +32,6 @@ jobs:
|
||||||
git checkout "${{ github.ref_name }}"
|
git checkout "${{ github.ref_name }}"
|
||||||
git branch --set-upstream-to=upstream/${{ github.ref_name }} ${{ github.ref_name }}
|
git branch --set-upstream-to=upstream/${{ github.ref_name }} ${{ github.ref_name }}
|
||||||
|
|
||||||
- name: Generate a token for Rekku
|
|
||||||
id: generate-rekku-token
|
|
||||||
uses: RetroDECK/components-template/.github/workflows/generate_rekku_token.yml@main
|
|
||||||
|
|
||||||
- name: Configuring Git
|
- name: Configuring Git
|
||||||
run: |
|
run: |
|
||||||
git config --global protocol.file.allow always
|
git config --global protocol.file.allow always
|
||||||
|
|
Loading…
Reference in a new issue