Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/ci/steps/release-static.sh

16 lines
253 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-05-13 11:06:11 +02:00
# https://github.com/actions/upload-artifact/issues/38
2020-05-15 03:37:58 +02:00
chmod +x $(grep -rl '^#!/.*' release)
2020-05-13 11:06:11 +02:00
yarn release:static
2020-05-08 22:31:42 +02:00
yarn test:static-release
yarn package
}
main "$@"