From a1dcf355d9fcc506e9d40919476d26f9af949d50 Mon Sep 17 00:00:00 2001 From: Anthony Rabbito Date: Fri, 28 Jun 2024 11:25:51 -0400 Subject: [PATCH] feat: add gitignore Signed-off-by: Anthony Rabbito --- .github/workflows/charts-release-oci.yaml | 42 ----------------------- .gitignore | 37 ++++++++++++++++++++ 2 files changed, 37 insertions(+), 42 deletions(-) delete mode 100644 .github/workflows/charts-release-oci.yaml create mode 100644 .gitignore diff --git a/.github/workflows/charts-release-oci.yaml b/.github/workflows/charts-release-oci.yaml deleted file mode 100644 index 175fe63..0000000 --- a/.github/workflows/charts-release-oci.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: "Charts: Release to GHCR OCI" - -on: - workflow_dispatch: {} - push: - branches: [main] - paths: - - "chart/**/*" - -jobs: - release-charts: - name: Release chart - permissions: - contents: write - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Install Helm - uses: azure/setup-helm@v4 - - - uses: googleapis/release-please-action@v4 - with: - config-file: .github/release-please-config.json - manifest-file: .github/.release-please-manifest.json - target-branch: ${{ github.ref_name }} - skip-github-pull-request: true - - # - name: Package & Push Helm Charts - # shell: bash - # run: | - # helm package --dependency-update --destination "${{ env.CHARTS_SRC_DIR }}/${CHART_TYPE}" --version "${CHART_VERSION}" - # helm push "${{ env.CHARTS_SRC_DIR }}/${CHART_TYPE}/${CHART_NAME}-${CHART_VERSION}.tgz" oci://${{ env.TARGET_REGISTRY }}/${{ github.actor }}/helm diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f5ea5a --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +# General files for the project +pkg/* +*.pyc +bin/* +.project +/.bin +/_test/secrets/*.json + +# OSX leaves these everywhere on SMB shares +._* + +# OSX trash +.DS_Store + +# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA +.idea/ +*.iml + +# Vscode files +.vscode + +# Emacs save files +*~ +\#*\# +.\#* + +# Vim-related files +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +*.un~ +Session.vim +.netrwhist + +# Chart dependencies +**/chart/*.tgz + +.history