Skip to content

Commit

Permalink
Update release workflow to use tar.gz format and add .gitignore; enha…
Browse files Browse the repository at this point in the history
…nce README setup instructions
  • Loading branch information
supcik committed Dec 18, 2024
1 parent 93c44b2 commit ee97832
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: mkdir -p dist
- run: zip -r dist/boilerplate.zip .devcontainer .startup.sh
- run: tar czvf ./dist/cc-devcontainer.tar.gz .devcontainer .startup.sh
- run: zip -r dist/cc-devcontainer.zip .devcontainer .startup.sh
- uses: softprops/action-gh-release@v2
id: release
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.zip
files: |
dist/*.tar.gz
dist/*.zip
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Compiler Construction Lecture - Development Environment

## Setup

1. Install [Docker](https://docs.docker.com/get-docker/)
2. Install [Visual Studio Code](https://code.visualstudio.com/)
3. Install the [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension for Visual Studio Code
4. Create a new folder for your project
5. Download the [boilerplate.zip](https://github.com/heia-fr/cc-devcontainer/releases/latest/download/boilerplate.zip) file and extract it into the folder

0 comments on commit ee97832

Please sign in to comment.