Skip to content

fixed bug

fixed bug #3

Workflow file for this run

name: Release Chrome Extension
on:
push:
tags:
- 'v*' # Triggers only when you push a tag starting with v (e.g. v1.0, v1.1)
permissions:
contents: write # Required to create the release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Zip File
run: |
# Zip everything except hidden git files and the github folder itself
zip -r price-actually-bdt.zip . -x "*.git*" "*.github*" "*.DS_Store"
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
files: price-actually-bdt.zip
generate_release_notes: true # Auto-generates notes from your commit messages