Skip to content

Commit 88bd3e8

Browse files
committed
chore: fixes for the release process
1 parent d283756 commit 88bd3e8

File tree

13 files changed

+23
-19
lines changed

13 files changed

+23
-19
lines changed

Dockerfile.release

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ WORKDIR /code/bulletin_board/server
9393

9494
# Precompile assets
9595
RUN npm install --global yarn
96+
RUN bundle
9697
RUN bundle exec rake assets:precompile
9798

9899
# Migrate and seed database

Dockerfile.web

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ WORKDIR /code/bulletin_board/server
9393

9494
# Precompile assets
9595
RUN npm install --global yarn
96+
RUN bundle
9697
RUN bundle exec rake assets:precompile
9798

9899
# Run the entrypoint script

Dockerfile.worker

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ WORKDIR /code/bulletin_board/server
8383

8484
# Precompile assets
8585
RUN npm install --global yarn
86+
RUN bundle
8687
RUN bundle exec rake assets:precompile
8788

8889
# Run the entrypoint script

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,9 @@ update_changelog:
9393

9494
commit_and_push:
9595
git commit -am "chore: bump to version ${VERSION}"
96+
git push
9697
git tag v${VERSION}
97-
git push --tags origin/main
98+
git push --tags
9899

99100
check_clean_repo:
100101
git diff --quiet

bulletin_board/client.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ release_bulletin_board_client_gem:
6161
rm decidim-bulletin_board-${VERSION}.gem
6262

6363
release_bulletin_board_client_package:
64-
cd ${BULLETIN_BOARD_CLIENT_JS_LIBRARY_PATH} && npm publish
64+
cd ${BULLETIN_BOARD_CLIENT_JS_LIBRARY_PATH} && npm publish --access public

bulletin_board/js-client/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bulletin_board/js-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@codegram/decidim-bulletin_board",
2+
"name": "@decidim/decidim-bulletin_board",
33
"version": "0.22.0",
44
"description": "",
55
"main": "src/index.js",
@@ -48,4 +48,4 @@
4848
"prettier": "2.1.2",
4949
"webpack-dev-server": "^3.11.2"
5050
}
51-
}
51+
}

voting_schemes/dummy/js-adapter/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

voting_schemes/dummy/js-adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@codegram/voting_schemes-dummy",
2+
"name": "@decidim/voting_schemes-dummy",
33
"version": "0.22.0",
44
"description": "",
55
"main": "src/index.js",
@@ -29,4 +29,4 @@
2929
"webpack": "^5.11.0",
3030
"webpack-cli": "^4.2.0"
3131
}
32-
}
32+
}

voting_schemes/dummy/makefile.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ release_voting_scheme_dummy_gem:
6464
rm voting_schemes-dummy-${VERSION}.gem
6565

6666
release_voting_scheme_dummy_package:
67-
cd ${VOTING_SCHEME_DUMMY_JS_LIBRARY_PATH} && npm publish
67+
cd ${VOTING_SCHEME_DUMMY_JS_LIBRARY_PATH} && npm publish --access public

0 commit comments

Comments
 (0)