Skip to content

Commit

Permalink
Add GitHub Actions workflow for release and create README file
Browse files Browse the repository at this point in the history
  • Loading branch information
supcik committed Dec 18, 2024
1 parent 02e1f81 commit 93c44b2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: release

on:
push:
tags: ['*']

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: mkdir -p dist
- run: zip -r dist/boilerplate.zip .devcontainer .startup.sh
- uses: softprops/action-gh-release@v2
id: release
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*.zip
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Compiler Construction Lecture - Development Environment

0 comments on commit 93c44b2

Please sign in to comment.