mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
14 lines
255 B
Bash
Executable File
14 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
git config user.name "GitHub Actions"
|
|
git config user.email "actions@user.noreply.github.com"
|
|
git checkout main
|
|
|
|
npm run licenses
|
|
|
|
git add 3RD_PARTY_LICENSES
|
|
git commit -m "Update 3rd party licenses" || true
|
|
git push origin
|