Skip to content

Commit

Permalink
Tag Update
Browse files Browse the repository at this point in the history
- Updated tag validation must contain semantic version
- Updated env variable with constant.
  • Loading branch information
dharmesh-hemaram committed Oct 7, 2023
1 parent 1e53ebd commit b010abd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
push:
# Pattern matched against refs/tags
tags:
- '*'
- 'v[1-9].[0-9]+.[0-9]+'

concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
Expand Down
4 changes: 2 additions & 2 deletions apps/acf-extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ const path = require('path');
function modify(buffer, { KEY, NX_NAME, OAUTH_CLIENT_ID, RELEASE_VERSION }) {
// copy-webpack-plugin passes a buffer
const manifest = JSON.parse(buffer.toString());
console.log(typeof RELEASE_VERSION, RELEASE_VERSION);
console.log(RELEASE_VERSION, RELEASE_VERSION.replace('v', ''));

// make any modifications you like, such as
manifest.version = RELEASE_VERSION;
manifest.version = RELEASE_VERSION.replace('v', '');
manifest.name = NX_NAME;
if (OAUTH_CLIENT_ID) {
manifest.oauth2.client_id = OAUTH_CLIENT_ID;
Expand Down
4 changes: 2 additions & 2 deletions apps/acf-options-page/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const APP_LINK = {
BLOG: 'https://blog.getautoclicker.com/',
CONFIGS: 'https://configs.getautoclicker.com/',
TEST: 'https://test.getautoclicker.com/',
ISSUES: 'https://github.com/Dhruv-Techapps/auto-click-auto-fill/issues/',
ISSUES: 'https://github.com/Dhruv-Techapps/auto-clicker-auto-fill/issues',
};
// Application Languages
export const APP_LANGUAGES = ['en', 'kr', 'fr', 'cn'];
Expand All @@ -17,7 +17,7 @@ export const SOCIAL_LINKS = {
DISCORD: 'https://discord.gg/ubMBeX3',
GOOGLE_GROUP: 'https://groups.google.com/g/auto-clicker-autofill',
TWITTER: 'https://twitter.com/dharmeshhemaram',
GITHUB: 'https://github.com/Dhruv-Techapps/auto-click-auto-fill',
GITHUB: 'https://github.com/Dhruv-Techapps/auto-clicker-auto-fill',
};

export const SPONSORS = [
Expand Down

0 comments on commit b010abd

Please sign in to comment.