Skip to content

Commit

Permalink
fix: aanmaak van map files vermijden bij scss omzetting
Browse files Browse the repository at this point in the history
de map files die gegenereerd worden zijn niet correct, dit geeft problemen bij afnemers
  • Loading branch information
kspeltix committed Jan 31, 2023
1 parent 47860a9 commit 0b3084c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-uigov-web-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
release-and-publish:
if:
# only publish release and develop-team branches
contains('refs/heads/release, refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
contains('refs/heads/release, refs/heads/bugfix, refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -255,7 +255,7 @@ jobs:
cypress/cache
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.run_number }}
- name: release the develop branch
if: contains('refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
if: contains('refs/heads/bugfix, refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
run: |
cd ./
mv .releaserc-develop .releaserc
Expand All @@ -278,8 +278,8 @@ jobs:
rootsemver=$(echo ${{ env.nextRelease_version }} | cut -d '.' -f1-3)
echo using $rootsemver as rootsemver
echo "root_semver=$rootsemver" >> $GITHUB_ENV
- name: build the pages_sub_path for develop branches
if: contains('refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
- name: build the pages_sub_path for bugfix and develop branches
if: contains('refs/heads/bugfix, refs/heads/develop, refs/heads/develop-apo, refs/heads/develop-dec, refs/heads/develop-olo, refs/heads/develop-phe, refs/heads/develop-uig', github.ref)
run: |
pagesSubPath=${{ github.ref_name }}
echo using $pagesSubPath as pages_sub_path
Expand Down
1 change: 1 addition & 0 deletions .releaserc-develop
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"branches": [
"release",
{ name: "bugfix", prerelease: "fix" },
{ name: "develop", prerelease: "beta" },
{ name: "develop-apo", prerelease: "beta-apo" },
{ name: "develop-dec", prerelease: "beta-dec" },
Expand Down
2 changes: 1 addition & 1 deletion libs/map/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"process-scss": {
"executor": "nx:run-commands",
"options": {
"command": "sass libs/map/src/lib:dist/libs/map/src/lib --load-path ./node_modules --load-path ./libs"
"command": "sass libs/map/src/lib:dist/libs/map/src/lib --no-source-map --load-path ./node_modules"
}
},
"lint": {
Expand Down

0 comments on commit 0b3084c

Please sign in to comment.