<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: drey</title>
    <description>The latest articles on DEV Community by drey (@dreyo1).</description>
    <link>https://dev.to/dreyo1</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F712025%2F8bdc802d-e505-42dd-9b8f-29f2766e0eda.png</url>
      <title>DEV Community: drey</title>
      <link>https://dev.to/dreyo1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dreyo1"/>
    <language>en</language>
    <item>
      <title>github action generating version tag out of order</title>
      <dc:creator>drey</dc:creator>
      <pubDate>Thu, 14 Apr 2022 18:12:30 +0000</pubDate>
      <link>https://dev.to/dreyo1/github-action-generating-version-tag-out-of-order-3ch5</link>
      <guid>https://dev.to/dreyo1/github-action-generating-version-tag-out-of-order-3ch5</guid>
      <description>&lt;p&gt;I have an existing repository with 150 commits and latest release as v3.00 which was created manually. moving forward I want to use github action to automate that process but the below code when used with my existing repo, is creating a version tag out of order v0.1.0.please how can i fix this issue.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;on:
  push:
   branches:
     - master

jobs:
  release:
   runs-on: ubuntu-latest

   steps:
    - name: checkout
      uses: actions/checkout@v2

    - name: conventional changelog action
      id: changelog
      uses: TriPSs/conventional-changelog-action@latest
      with:
        github-token: `"${{ secrets.GITHUB_TOKEN }}"`

    - name: create release
      uses: softprops/action-gh-release@v1
      if: `${{steps.changelog.outputs.skipped == 'false'}}`
      env:
        GITHUB_TOKEN: `${{ secrets.GITHUB_TOKEN }}`
      with:
          tag_name: `${{ steps.changelog.outputs.tag }}`
          name: `${{ steps.changelog.outputs.tag }}`
          body: `${{steps.changelog.outputs.clean_changelog}}`
          draft: false
          prerelease: false
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
    </item>
    <item>
      <title>How to configure GithubAction to work with CodeBuild</title>
      <dc:creator>drey</dc:creator>
      <pubDate>Fri, 24 Sep 2021 15:19:49 +0000</pubDate>
      <link>https://dev.to/dreyo1/how-to-configure-githubaction-to-work-with-codebuild-3ab1</link>
      <guid>https://dev.to/dreyo1/how-to-configure-githubaction-to-work-with-codebuild-3ab1</guid>
      <description>&lt;p&gt;I am using Githubactions with codebuild but each time the CodeBuild stage starts to run,I am getting Error message: The Security token included in the request is invalid.please can you help with how to fix it?&lt;/p&gt;

&lt;p&gt;Run aws-actions/aws-codebuild-run-build@v1&lt;br&gt;
  with:&lt;br&gt;
    project-name: CodeBuild&lt;br&gt;
    buildspec-override: dev-env/buildspec.yml&lt;br&gt;
    env-vars-for-codebuild: TF_INPUT,&lt;br&gt;
  AWS_ACCESS_KEY_ID,&lt;br&gt;
  AWS_SECRET_ACCESS_KEY,&lt;br&gt;
  AWS_REGION,&lt;br&gt;
  ROLE_TO_ASSUME,&lt;br&gt;
  ROLE_DURATION_SECONDS,&lt;/p&gt;

&lt;p&gt;env:&lt;br&gt;
    tf_version: latest&lt;br&gt;
    tg_version: latest&lt;br&gt;
    AWS_DEFAULT_REGION: us-east-2&lt;br&gt;
    AWS_REGION: us-east-1&lt;br&gt;
    AWS_ACCESS_KEY_ID: ***&lt;br&gt;
    AWS_SECRET_ACCESS_KEY: ***&lt;br&gt;
    AWS_SESSION_TOKEN: ***&lt;br&gt;
    TF_INPUT: false&lt;br&gt;
    ROLE_TO_ASSUME: ***&lt;br&gt;
    ROLE_DURATION_SECONDS: 3600&lt;br&gt;
**&lt;strong&gt;&lt;em&gt;STARTING CODEBUILD&lt;/em&gt;&lt;/strong&gt;**&lt;br&gt;
Error: The security token included in the request is invalid&lt;br&gt;
**&lt;strong&gt;&lt;em&gt;CODEBUILD COMPLETE&lt;/em&gt;&lt;/strong&gt;**&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
