Skip to content

Commit

Permalink
Remove dependency from setup-ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Sep 20, 2023
1 parent b00d940 commit 6bb4122
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ jobs:
with:
repository: rpm-software-management/ci-dnf-stack

- name: Setup CI
id: setup-ci
uses: ./.github/actions/setup-ci
with:
copr-user: ${{secrets.COPR_USER}}
copr-api-token: ${{secrets.COPR_API_TOKEN}}
- name: Setup Copr
id: copr-setup
shell: bash
env:
COPR_API_TOKEN: ${{ secrets.COPR_API_TOKEN }}
run: |
mkdir -p "$HOME/.config"
echo "$COPR_API_TOKEN" > "$HOME/.config/copr"
- name: Check out sources
uses: actions/checkout@v2
Expand All @@ -37,7 +39,7 @@ jobs:
id: copr-build
uses: ./.github/actions/copr-build
with:
copr-user: ${{steps.setup-ci.outputs.copr-user}}
copr-user: ${{vars.COPR_USER}}
overlay: dnf5-ci

integration-tests:
Expand Down

0 comments on commit 6bb4122

Please sign in to comment.