Skip to content

Commit

Permalink
Merge pull request #11 from demisto/deprecate-circle-ci
Browse files Browse the repository at this point in the history
Deprecating CircleCI to migrate to GA
  • Loading branch information
amshamah419 authored Sep 10, 2024
2 parents bfdef67 + 9258b46 commit 088358c
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 32 deletions.
32 changes: 0 additions & 32 deletions .circleci/config.yml

This file was deleted.

63 changes: 63 additions & 0 deletions .github/workflows/full_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Docker Repository Update

on:
push:
branches:
- master
schedule:
- cron: '0 1 * * *'

jobs:
update_docker_repo_info:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Set up pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies
run: pipenv install

- name: Run update-docker-repo-info script
run: pipenv run ./update-docker-repo-info.py

- name: Configure Git for commit
run: |
git config --global user.email "dc-builder@users.noreply.github.com"
git config --global user.name "dc-builder"
- name: Check for changes
id: git_status
run: |
git status --short > git_changes.txt
cat git_changes.txt
- name: Upload artifacts (if changes)
if: steps.git_status.outputs.changes != ''
run: |
mkdir -p artifacts
cat git_changes.txt | awk '{print $2}' | sed 's:/*$::' | xargs -I {} cp -rf {} artifacts/. || echo "cp failed for some reason. continue..."
continue-on-error: true

- name: Commit and push changes
if: steps.git_status.outputs.changes != ''
run: |
git add .
git commit -m "$(date): auto repo info update [skip ci]"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true

- name: Print completion message
run: echo "Docker repository update complete."

0 comments on commit 088358c

Please sign in to comment.