コード関数のソースコードを含むzipファイルを作成し、Google Cloud Storageにアップロードするgithubアクションを作成しようとしています
次に、この zip ファイルを使用してクラウド機能をデプロイする Terraform リポジトリを作成します。
問題は、ローカル環境 (WSL Ubuntu 18-04) でこれらのファイルを zip ファイルに圧縮し、その zip ファイルを同じストレージにアップロードすると、Terraform のデプロイメントを続行でき、すべてが正常に進むということです。
zip ../0.0.9.zip *
ただし、Github Action から同じコマンドを実行すると、zip が作成され、期待どおりに Cloud Storage にプッシュされ、ダウンロードして開くこともできますが、Cloud Function Deployment の Cloud Build プロセスは機能しません。これらの違いがわかりません。
Github Action のワークフローは次のとおりです。
name: Function Deploy
on:
push:
tags:
- '*'
jobs:
build:
name: 'Build & Push'
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Using Node
uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: Installing Node Modules
run: npm install
- name: Building
run: npm run build
- name: Copy files
run: |
cp package.json ./lib/package.json
cp package-lock.json ./lib/package-lock.json
cp cloudbuild.yaml ./lib/cloudbuild.yaml
- name: Zipping Version
run: |
cd lib
zip ../${{ github.ref_name }}.zip *
cd ..
- name: Auth to GCP
uses: google-github-actions/auth@v1
with:
credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }}
- name: Uploading
uses: google-github-actions/upload-cloud-storage@v1
with:
path: ${{ github.ref_name }}.zip
destination: ${{ secrets.GCP_BUCKET_NAME }}
以下はクラウド ビルドからのエラー ログです。
starting build "ac767a2c-5242-4315-8b20-f8672206b04c"
FETCHSOURCE
Fetching storage object: gs://gcf-sources-xxxxx-europe-west1/ln-func-bcareer-e8268533-f38c-44a7-b62e-ec74a3affe0b/version-2/function-source.zip#1669544086773073
Copying gs://gcf-sources-xxxxxx-europe-west1/ln-func-bcareer-e8268533-f38c-44a7-b62e-ec74a3affe0b/version-2/function-source.zip#1669544086773073...
/ [0 files][ 0.0 B/ 31.6 KiB] / [1 files][ 31.6 KiB/ 31.6 KiB]
Operation completed over 1 objects/31.6 KiB.
Archive: /tmp/source-archive.zip
End-of-central-directory signature not found. Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive. In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.
unzip: cannot find zipfile directory in one of /tmp/source-archive.zip or
/tmp/source-archive.zip.zip, and cannot find /tmp/source-archive.zip.ZIP, period.
使用される zip コマンドは、両方のプロセスで同じバージョンです。
Github Action によって生成された zip ファイルは、クラウド ストレージからダウンロードして、Windows で問題なく開くことができます。
しかし、ビルド ストレージで取得すると、開くことができなくなります。
また、ローカルから生成されたzipファイルは、クラウドビルドストレージからダウンロードして開くこともできます。
私は何を取りこぼしたか ?