Merge pull request #24 from jstsmthrgk/master #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: package-sandbox | |
on: [push] | |
jobs: | |
package-sandbox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: zip -r Sandbox.zip scenario_09_sandbox.lua sandbox | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Sandbox | |
path: Sandbox.zip | |
overwrite: true |