Skip to content

Commit

Permalink
Rename spec -> rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
RikudouSage committed Sep 24, 2024
1 parent 9e83862 commit db2588a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
with:
name: ubuntu-latest
- name: Create sources directory
run: mkdir -p spec/SOURCES
run: mkdir -p rpm/SOURCES
- name: Move file
run: mv LargeCsvReader.tar.xz spec/SOURCES
run: mv LargeCsvReader.tar.xz rpm/SOURCES
- name: Build RPM
run: rpmbuild -ba --define "_topdir $(pwd)/spec" --define "app_version $APP_VERSION" spec/LargeCsvReader.spec
run: rpmbuild -ba --define "_topdir $(pwd)/rpm" --define "app_version $APP_VERSION" rpm/LargeCsvReader.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: spec/RPMS/x86_64/LargeCsvReader-${{ env.APP_VERSION }}-1.x86_64.rpm
path: rpm/RPMS/x86_64/LargeCsvReader-${{ env.APP_VERSION }}-1.x86_64.rpm
name: rpm
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/fyne-cross
/.idea
/spec/*
!/spec/LargeCsvReader.spec
/rpm/*
!/rpm/LargeCsvReader.spec
File renamed without changes.

0 comments on commit db2588a

Please sign in to comment.