diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9d481f4..280ff74 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,3 +25,20 @@ jobs: owner: ztimson registry: https://registry.npmjs.org/ token: ${{secrets.NPM_TOKEN}} + tag: + name: Tag Version + needs: build + if: ${{github.ref_name}} == 'release' + runs-on: ubuntu-latest + container: node:alpine + steps: + - name: Clone Repository + uses: ztimson/actions/clone@develop + + - name: Get Version Number + run: echo "VERSION=$(cat server/package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV + + - name: Tag Version + uses: ztimson/actions/tag@develop + with: + tag: ${{env.VERSION}} diff --git a/package.json b/package.json index 1f2700e..0533472 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "CSS Utility Classes", "readme": "README.md", "scripts": { - "build": "npx sass src/main.scss > dist/main.css && npx sass src/main.scss --style compressed > dist/main.min.css" + "build": "npx sass src/main.scss > dist/css-utils.css && npx sass src/main.scss --style compressed > dist/css-utils.min.css" }, "repository": { "type": "git",