mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
Updating the maintainers guide with updated intructions from Ansible engineers. Fixing linting issues, and adding the linter as a GitHub workflow to ensure there are no regressions.
7 lines
No EOL
203 B
Bash
Executable file
7 lines
No EOL
203 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Build the cloud function zip file,
|
|
# in the desired cloud function source format.
|
|
if [ -f ../cloud-function.zip ]; then
|
|
rm ../cloud-function.zip
|
|
fi
|
|
zip ../cloud-function.zip ./* |