Skip to content
This repository was archived by the owner on Aug 31, 2023. It is now read-only.

Commit f601f68

Browse files
committed
pulling repo
1 parent f91a4f8 commit f601f68

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/publish_container_ci.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,13 @@ jobs:
1818
registry: ghcr.io
1919
username: ${{ github.actor }}
2020
password: ${{ secrets.GITHUB_TOKEN }}
21+
- name: Checkout PR Branch
22+
uses: actions/checkout@v3
23+
with:
24+
submodules: false
25+
- name: List ci
26+
working-directory: ci
27+
run: ls -la
2128
- name: Publish Container
22-
run: ./ci/publish.sh
29+
working-directory: ci
30+
run: ./publish.sh

ci/rome-ci-x86-64-centos7/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ RUN yum install gcc gcc-c++ make openssl-devel git -y
55
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
66
RUN nvm install 14
77
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
8-
RUN cargo install cargo-audit
8+
RUN cargo install cargo-audit
9+
CMD ["/bin/bash", "--login"]

0 commit comments

Comments
 (0)