Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(workflows): Clean up production config #2704

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,8 @@ on:
workflow_dispatch:

jobs:
prepare-staging-branches:
runs-on: ubuntu-22.04
environment: deploydocker
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: 'kernelci/kernelci-deploy'
ref: 'main'
fetch-depth: 0
path: kernelci-deploy
- name: Prepare necessary tools
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y python3-pip git
pip3 install --upgrade pip
git config --global user.email "[email protected]"
git config --global user.name "Staging script"
call-docker-build:
needs: prepare-staging-branches
# needs: prepare-staging-branches
uses: ./.github/workflows/docker_images.yml
with:
GIT_OWNER: 'kernelci'
Expand Down
Loading