Skip to content

chore(deps): refresh pip-compile outputs python (#2548) #1587

chore(deps): refresh pip-compile outputs python (#2548)

chore(deps): refresh pip-compile outputs python (#2548) #1587

Workflow file for this run

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: "Push and Deploy"
on:
push:
# run on pushes to main
branches:
- main
jobs:
push-deploy:
runs-on: [self-hosted, is-enabled]
steps:
- uses: actions/checkout@v4
- name: Push latest images to GCR
timeout-minutes: 20
run: |
skaffold config set --global local-cluster false
# tag with git hash
skaffold build --default-repo=gcr.io/$PROJECT_ID \
--tag=$GITHUB_SHA
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}