Merge pull request #135 from Fraunhofer-IIS/130-make-line-buffer-size… #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: package | |
on: | |
push: | |
branches: ["master", "dev"] | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16 | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
container: | |
image: ghcr.io/fraunhofer-iis/libjapi_ci | |
credentials: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Build RPM package | |
run: ls -la; package/create_rpm.sh | |
- name: Upload package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Binary RPM | |
path: package/rpmbuild/RPMS/x86_64/libjapi*.rpm |