Skip to content

Commit

Permalink
tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dharmesh-hemaram committed Oct 3, 2023
1 parent 2365953 commit e9cf7ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
echo "DISCORD_CLIENT_ID='${{ vars.DISCORD_CLIENT_ID }}'" >> $GITHUB_OUTPUT
echo "OAUTH_CLIENT_ID=${{ vars.OAUTH_CLIENT_ID }}" >> $GITHUB_OUTPUT
echo "PUBLIC_URL=${{ vars.PUBLIC_URL }}" >> $GITHUB_OUTPUT
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
echo "RELEASE_VERSION=${{github.ref_name}}" >> $GITHUB_OUTPUT
main:
needs: [EnvSetup]
name: Nx Cloud - Main Job
Expand Down
1 change: 1 addition & 0 deletions apps/acf-extension/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ 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);

// make any modifications you like, such as
manifest.version = RELEASE_VERSION;
Expand Down

0 comments on commit e9cf7ad

Please sign in to comment.