0
0
mirror of https://github.com/neon-mmd/websurfx.git synced 2024-11-22 05:58:21 -05:00

Compare commits

..

21 Commits

Author SHA1 Message Date
Scott
be6ebe5c90
Merge bc8608cd4e into 779908cb11 2024-01-29 12:13:22 +00:00
Scott
bc8608cd4e Merge branch 'FEATURE/399_GitHubActions-automate-release-versions-PR' of github.com:scottc943/websurfx into FEATURE/400_GitHubActions-automate-release-versions-PR 2024-01-29 07:12:44 -05:00
Scott
7e02b6f0ef ci: using echo and double quotes in the appversion variable. Testing now 2024-01-29 07:11:59 -05:00
Scott
d01b89eafc
Merge branch 'rolling' into FEATURE/400_GitHubActions-automate-release-versions-PR 2024-01-29 07:08:55 -05:00
Scott
fab6c40763 ci: added step to change Cargo.toml app version to the latest tag version without the v 2024-01-29 07:06:15 -05:00
Scott
4c60e41482
Merge pull request #23 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: reset commit and removed changelog
2024-01-28 10:37:48 -05:00
Scott
c7584ade0d ci: reset commit and removed changelog 2024-01-28 10:36:34 -05:00
Scott
96688e1766
Merge pull request #22 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
BREAKING CHANGE: removed changelog action
2024-01-28 10:14:40 -05:00
Scott
4ed6a1cdd3 BREAKING CHANGE: removed changelog action 2024-01-28 10:13:57 -05:00
Scott
62748a3568
Merge pull request #21 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
major: testing updating major
2024-01-28 10:11:33 -05:00
Scott
29dece3d9b major: testing updating major 2024-01-28 10:11:07 -05:00
Scott
479de09eed
Merge pull request #20 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: fixing to make the release branch rolling
2024-01-28 10:07:28 -05:00
Scott
89f3ae8b56 ci: fixing to make the release branch rolling 2024-01-28 10:07:02 -05:00
Scott
2269f82692
Merge pull request #19 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: fixing self inflicted error where I forgot to put an ID in
2024-01-28 10:03:48 -05:00
Scott
07ab7968d0 ci: fixing self inflicted error where I forgot to put an ID in 2024-01-28 10:03:20 -05:00
Scott
35a9d647f9
Merge pull request #18 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: testing some things
2024-01-28 09:59:48 -05:00
Scott
96e786b5cb ci: testing some things 2024-01-28 09:59:23 -05:00
Scott
28b15a3f35
Merge pull request #17 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: missing }
2024-01-28 09:56:18 -05:00
Scott
2b3bfd96c2 ci: missing } 2024-01-28 09:55:49 -05:00
Scott
3426c2462a
Merge pull request #16 from scottc943/FEATURE/400_GitHubActions-automate-release-versions
ci: changed action for tag. I believe it was causing errors
2024-01-28 09:55:08 -05:00
Scott
392901f6f9 ci: changed action for tag. I believe it was causing errors 2024-01-28 09:54:38 -05:00

View File

@ -27,6 +27,15 @@ jobs:
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: rolling release_branches: rolling
- name: get-app-version
id: package-version
run: |
LF_VERSION=$(cat package.json | jq -r '.version')
echo "current-version=$LF_VERSION" >> "$GITHUB_OUTPUT"
- name: update cargo.toml
run: |
appversion=$(echo "${{ steps.version-bump.outputs.new_tag }}" | sed 's/[v]//')
sed -i -e "s/^version = .*/version = \"$appversion\"/" Cargo.toml
- name: Create Release - name: Create Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
@ -36,5 +45,4 @@ jobs:
tag_name: ${{ steps.version-bump.outputs.new_tag }} tag_name: ${{ steps.version-bump.outputs.new_tag }}
prerelease: false prerelease: false
env: env:
GITHUB_REPOSITORY: ${{ github.repository }} GITHUB_REPOSITORY: ${{ github.repository }}