Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add dev build ci #8

Merged
merged 34 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
5f8a57c
ci: add dev build ci
SARDONYX-sard Oct 9, 2023
29d974a
ci: rename GUI ci name
SARDONYX-sard Oct 9, 2023
ed9f992
ci: add tag
SARDONYX-sard Oct 9, 2023
f401201
ci(dev): remove tag in changelog
SARDONYX-sard Oct 9, 2023
1ce4dce
ci(dev): remove changelog action
SARDONYX-sard Oct 9, 2023
b7f3dfd
ci(dev): attempt new changelog
SARDONYX-sard Oct 9, 2023
32db67b
ci(release): add if condition
SARDONYX-sard Oct 9, 2023
77301d0
ci(dev): add recreate tag action
SARDONYX-sard Oct 9, 2023
80b0302
ci(dev): change recreate tag action
SARDONYX-sard Oct 9, 2023
babf7c5
ci(dev): add `force` in recreate tag action
SARDONYX-sard Oct 9, 2023
4eb8be9
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
12208f8
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
5daf3c8
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
28246a7
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
8ec1e53
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
b088f4a
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
8a84b5f
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
6e11976
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
18b6103
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
3bf61b9
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
f328b00
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
3b90b63
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
776e2ee
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
5650f0b
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
9e917c7
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
b509e75
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
b4d5552
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
9abc035
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
83ef817
ci(dev): attempt recreate tag ci
SARDONYX-sard Oct 9, 2023
32d1eb0
ci(dev): revert changelog action
SARDONYX-sard Oct 9, 2023
0a86f6d
fix(front): fix css preset design
SARDONYX-sard Oct 9, 2023
d579782
feat(front-form): change help texts
SARDONYX-sard Oct 9, 2023
4ba13c5
ci(cli): change toolchain action
SARDONYX-sard Oct 9, 2023
d214689
fix(front): remove removed import
SARDONYX-sard Oct 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci(dev): attempt recreate tag ci
SARDONYX-sard committed Oct 9, 2023

Verified

This commit was signed with the committer’s verified signature.
SARDONYX-sard SARDONYX
commit 12208f80a73485a68d764972342210ee2275c2a4
31 changes: 10 additions & 21 deletions .github/workflows/dev-release-cli.yaml
Original file line number Diff line number Diff line change
@@ -35,29 +35,18 @@ jobs:

# Without it, once created, the commit sha for the tag will not be updated.
- name: Recreate tag
uses: actions/github-script@v5
uses: actions/github-script@v6
with:
script: |
try {
await github.git.updateRef({
owner, repo, ref, sha
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/development',
sha: context.sha
});
console.log('Updating existing tag');
}
catch {
console.log('Creating new tag');
await github.git.createRef({
owner, repo, ref, sha
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/development',
sha: context.sha
});
}
const octokit = require('@octokit/rest')();
octokit.repos.createOrUpdateTag({
owner: context.repo.owner,
repo: context.repo.repo,
tag: 'development',
sha: ${{ github.sha }},
message: 'Tagging commit for development',
force: true
});

- name: Install stable toolchain
uses: actions-rs/toolchain@v1