Merge pull request #1561 from anderbubble/fix-nightly-build
Fix nightly build
This commit is contained in:
4
.github/actions/generate/action.yml
vendored
4
.github/actions/generate/action.yml
vendored
@@ -74,14 +74,14 @@ runs:
|
||||
|
||||
- name: Upload warewulf.spec
|
||||
if: steps.should-continue.outputs.continue == 'true'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: warewulf.spec
|
||||
path: warewulf.spec
|
||||
|
||||
- name: Upload DIST
|
||||
if: steps.should-continue.outputs.continue == 'true'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.DIST }}
|
||||
path: ${{ env.DIST }}
|
||||
|
||||
2
.github/actions/prepare/action.yml
vendored
2
.github/actions/prepare/action.yml
vendored
@@ -17,7 +17,7 @@ runs:
|
||||
shell: bash
|
||||
|
||||
- name: Setup go ${{ inputs.go-version }}
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: ${{ inputs.go-version }}
|
||||
cache: true
|
||||
|
||||
12
.github/actions/rpm/action.yml
vendored
12
.github/actions/rpm/action.yml
vendored
@@ -35,7 +35,7 @@ runs:
|
||||
shell: bash
|
||||
|
||||
- name: Download spec
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: warewulf.spec
|
||||
|
||||
@@ -45,7 +45,7 @@ runs:
|
||||
shell: bash
|
||||
|
||||
- name: Download dist
|
||||
uses: actions/download-artifact@v3
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: warewulf-${{ env.EXPECTED_VERSION }}.tar.gz
|
||||
|
||||
@@ -68,19 +68,19 @@ runs:
|
||||
shell: bash
|
||||
|
||||
- name: Upload RPM
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.RPM }}
|
||||
path: /var/lib/mock/${{ inputs.target }}/result/${{ env.RPM }}
|
||||
|
||||
- name: Upload SRPM
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.SRPM }}
|
||||
path: /var/lib/mock/${{ inputs.target }}/result/${{ env.SRPM }}
|
||||
|
||||
- name: Upload dracut RPM
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.DRACUT }}
|
||||
path: /var/lib/mock/${{ inputs.target }}/result/${{ env.DRACUT }}
|
||||
@@ -93,4 +93,4 @@ runs:
|
||||
with:
|
||||
release_id: ${{ inputs.event-id }}
|
||||
file: " warewulf-${{ env.EXPECTED_VERSION }}.tar.gz;/var/lib/mock/${{ inputs.target }}/result/${{ env.RPM }};/var/lib/mock/${{ inputs.target }}/result/${{ env.SRPM }};/var/lib/mock/${{ inputs.target }}/result/${{ env.DRACUT }}"
|
||||
overwrite: true
|
||||
overwrite: true
|
||||
|
||||
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
@@ -38,7 +38,7 @@ jobs:
|
||||
sudo apt-get install -f -y graphviz
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v1
|
||||
uses: actions/setup-python@v5
|
||||
|
||||
- name: Install Sphinx
|
||||
run: |
|
||||
|
||||
@@ -71,8 +71,9 @@ Requires: dhcp
|
||||
|
||||
BuildRequires: git
|
||||
BuildRequires: make
|
||||
BuildRequires: gpgme-devel
|
||||
%if %{api}
|
||||
BuildRequires: libassuan-devel gpgme-devel
|
||||
BuildRequires: libassuan-devel
|
||||
%endif
|
||||
|
||||
Recommends: logrotate
|
||||
|
||||
Reference in New Issue
Block a user