diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cbe8ed7 --- /dev/null +++ b/.github/workflows/release.yml @@ -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 diff --git a/README.md b/README.md new file mode 100644 index 0000000..bf66a30 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Compiler Construction Lecture - Development Environment