Skip to content

Commit 663aa85

Browse files
Prachi Shivanand AnurePrachi Shivanand Anure
authored andcommitted
minor canges
1 parent 2d4c6eb commit 663aa85

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ jobs:
2323
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
26+
27+
- name: Export Secrets
28+
run: |
29+
echo "RHSM_PASS=${{ secrets.RHSM_PASS }}" >> $GITHUB_ENV
30+
echo "RHSM_USER=${{ secrets.RHSM_USER }}" >> $GITHUB_ENV
31+
env:
32+
RHSM_PASS: ${{ secrets.RHSM_PASS }}
33+
RHSM_USER: ${{ secrets.RHSM_USER }}
34+
2635
- name: Get commit message
2736
id: get_commit
2837
run: |
@@ -53,6 +62,13 @@ jobs:
5362
with:
5463
fetch-depth: 0
5564

65+
- name: Set up Go
66+
uses: actions/setup-go@v5
67+
with:
68+
go-version: "1.24.5"
69+
check-latest: true
70+
cache: true
71+
5672
- name: Install system dependencies (bc + docker)
5773
run: |
5874
sudo apt-get update -qq
@@ -67,7 +83,7 @@ jobs:
6783
- name: Check code formatting
6884
run: make fmt
6985

70-
- name: Run unit tests (entire repo)
86+
- name: Run unit tests
7187
run: make test
7288

7389
- name: Generate coverage

0 commit comments

Comments
 (0)