Skip to content

create parent directories also lol #3

create parent directories also lol

create parent directories also lol #3

Workflow file for this run

on:
push:
branches: [main]
jobs:
extensions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure git user
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- name: Download flowR release
uses: robinraju/release-downloader@v1
with:
repository: flowr-analysis/vscode-flowr
latest: true
fileName: "*.vsix"
- name: Unpack flowR release
run: |
rm -rf extensions/vscode-flowr
mkdir -p extensions/vscode-flowr
unzip -o *.vsix -d extensions/vscode-flowr
rm *.vsix
- name: Commit and push changes
run: |
git commit -a -m "Update flowR extension"
git push