Skip to content

Commit

Permalink
fix(deploy): Automated release management
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Sep 18, 2023
1 parent b062a6f commit 8e2bd88
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 16 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
push:
branches:
- master

permissions:
contents: write
pull-requests: write
id-token: write

name: release
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
prerelease: true
package-name: ${{env.PACKAGE_NAME}}
pull-request-title-pattern: 'chore${scope}: release ${version} [skip-ci]'
# The logic below handles the npm publication:
- uses: actions/checkout@v3
# these if statements ensure that a publication only occurs when
# a new release is created:
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
14 changes: 7 additions & 7 deletions data/google-crawlers.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"creationTime": "2023-08-22T22:06:11.000000",
"creationTime": "2023-09-12T22:01:03.000000",
"prefixes": [
{
"ipv6Prefix": "2001:4860:4801:2003::/64"
},
{
"ipv6Prefix": "2001:4860:4801:2008::/64"
},
Expand Down Expand Up @@ -277,6 +274,9 @@
{
"ipv6Prefix": "2001:4860:4801:2078::/64"
},
{
"ipv6Prefix": "2001:4860:4801:2079::/64"
},
{
"ipv6Prefix": "2001:4860:4801:2080::/64"
},
Expand Down Expand Up @@ -409,9 +409,6 @@
{
"ipv4Prefix": "66.249.90.32/27"
},
{
"ipv4Prefix": "66.249.90.64/27"
},
{
"ipv4Prefix": "66.249.90.96/27"
},
Expand Down Expand Up @@ -630,6 +627,9 @@
},
{
"ipv4Prefix": "74.125.219.0/27"
},
{
"ipv4Prefix": "74.125.219.32/27"
}
]
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
"@postalsys/email-text-tools": "2.1.1",
"@postalsys/hecks": "3.0.0-fork.3",
"@postalsys/templates": "1.0.5",
"ace-builds": "1.24.2",
"ace-builds": "1.26.0",
"base32.js": "0.1.0",
"bull-arena": "4.0.1",
"bullmq": "4.10.0",
"bullmq": "4.11.0",
"compare-versions": "6.1.0",
"dotenv": "16.3.1",
"encoding-japanese": "2.0.0",
Expand All @@ -77,7 +77,7 @@
"ioredfour": "1.2.0-ioredis-07",
"ioredis": "5.3.2",
"ipaddr.js": "2.1.0",
"joi": "17.10.1",
"joi": "17.10.2",
"jquery": "3.7.1",
"js-beautify": "1.14.9",
"libbase64": "1.2.1",
Expand All @@ -86,7 +86,7 @@
"license-checker": "25.0.1",
"mailparser": "3.6.5",
"mailsplit": "5.4.0",
"marked": "9.0.0",
"marked": "9.0.2",
"minimist": "1.2.8",
"msgpack5": "6.0.2",
"murmurhash": "2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion static/js/ace/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/ace/ext-language_tools.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/ace/worker-html.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/ace/worker-javascript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/js/ace/worker-json.js

Large diffs are not rendered by default.

0 comments on commit 8e2bd88

Please sign in to comment.