Skip to content

Commit

Permalink
build: fix file copying in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
R-unic committed Jul 21, 2024
1 parent fb1f606 commit 79752db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
git clone --depth=50 --branch=deploy https://R-unic:${{ secrets.github_token }}@github.com/roblox-csharp/types.git deploy
mkdir -p deploy/Include
rm -rf deploy/Include/*
cp -r types/RobloxTypes/* deploy
cp types/RobloxTypes/Generated/PluginSecurity.cs deploy/Include/Generated/PluginSecurity.cs
cp -r types/RobloxTypes/* deploy/Include
cp types/RobloxTypes/PluginSecurity.cs deploy/PluginSecurity.cs
cp types/RobloxTypes/README.md deploy/README.md
cd deploy
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Types

This repository automatically generates types using the TypeGenerator.
This repository automatically generates types using the TypeGenerator.

## To-do
- Set up Dependabot

0 comments on commit 79752db

Please sign in to comment.