Adds some operations to debug goldsky data dumps (#1559) #91
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: warehouse-publish-cloudquery-plugins | |
env: | |
X_GITHUB_GRAPHQL_API: ${{ vars.X_GITHUB_GRAPHQL_API }} | |
X_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# This workflow only runs when a commit is completed on main. | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
push: | |
branches: | |
- main | |
jobs: | |
warehouse-publish-docker-containers: | |
name: warehouse-publish-docker-containers | |
environment: indexer | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: 'Login to GitHub Container Registry' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Package and publish cloudquery plugins | |
run: bash .github/scripts/publish-cloudquery-plugins.sh | |
- name: Package and publish other docker containers | |
run: bash .github/scripts/publish-docker-containers.sh | |